toListRecord function
Implementation
ListRecord toListRecord(List<FieldDefinition> header, MapRecord mapRecord) {
return header.map((e) => mapRecord[e.name]).toList(growable: false);
}
ListRecord toListRecord(List<FieldDefinition> header, MapRecord mapRecord) {
return header.map((e) => mapRecord[e.name]).toList(growable: false);
}