decodeMap<K, V> abstract method
Decodes the data as a map of key-value pairs.
Optionally takes Decodables to decode the keys and values of the map.
Implementation
Map<K, V> decodeMap<K, V>({Decodable<K>? keyUsing, Decodable<V>? valueUsing});