encodeMap<K, V> abstract method
Encodes a map of K
and V
.
Optionally takes Encodable functions to encode each key and value.
Implementation
void encodeMap<K, V>(Map<K, V> value, {Encodable<K>? keyUsing, Encodable<V>? valueUsing});