documentIds property

List<String>? get documentIds

Implementation

List<String>? get documentIds =>
    _wrapped.documentIds?.toDart.cast<String>().map((e) => e).toList();
set documentIds (List<String>? v)

Implementation

set documentIds(List<String>? v) {
  _wrapped.documentIds = v?.toJSArray((e) => e);
}