readList method
Reads a list value from the source, and if not found, returns an empty list.
Implementation
List readList(source, key) {
return tryReadList(source, key) ?? [];
}
Reads a list value from the source, and if not found, returns an empty list.
List readList(source, key) {
return tryReadList(source, key) ?? [];
}