documents property

  1. @override
List<Document>? get documents
override

Gets the list of entity documents (Visa/Bulletin) for this command.

  • Non-null: Response with documents for the target identifier
  • Null: Query request for documents of the target identifier

Implementation

@override
List<Document>? get documents {
  if (_docs == null) {
    var docs = this['documents'];
    if (docs is List) {
      _docs = Document.convert(docs);
    }
  }
  return _docs;
}