readMap method
Reads a map value from the source, and if not found, returns an empty map.
Implementation
Map readMap(source, key) {
return tryReadMap(source, key) ?? {};
}
Reads a map value from the source, and if not found, returns an empty map.
Map readMap(source, key) {
return tryReadMap(source, key) ?? {};
}