documentIDList property

List<int>? get documentIDList

Takes the list of the document IDs to process. All documents will be processed if it's empty.

Unmodifiable property. Use setter instead of .remove(), .addAll(), etc.

Implementation

List<int>? get documentIDList => _documentIDList;
set documentIDList (List<int>? val)

Implementation

set documentIDList(List<int>? val) {
  if (val != null) val = List.unmodifiable(val);
  _documentIDList = val;
  _set({"documentIDList": val});
}