documentIDList property

List<int>? documentIDList

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

Implementation

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

Implementation

set documentIDList(List<int>? val) {
  _documentIDList = val;
  _set({"documentIDList": val});
}