getRecordList method

RecordList? getRecordList([
  1. String? name
])

Get the list of the specified name.

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

Implementation

RecordList? getRecordList([String? name]){
  return _recordLists[name];
}