setRecordList method

void setRecordList(
  1. RecordList list, [
  2. String? name
])

Set the lsit of the specified name to the specified value.

If you don't specify name, you will set an unnamed list.

Implementation

void setRecordList(RecordList list, [String? name]){
  list.dataSet = this;
  _recordLists[name] = list;
}