encodeMap<K, V> method

  1. @override
void encodeMap<K, V>(
  1. String key,
  2. Map<K, V> value, {
  3. int? id,
  4. Encodable<K>? keyUsing,
  5. Encodable<V>? valueUsing,
})
override

Encodes a map of K and V for the given key or id.

Optionally takes Encodable functions to encode each key and value.

Implementation

@override
void encodeMap<K, V>(String key, Map<K, V> value, {int? id, Encodable<K>? keyUsing, Encodable<V>? valueUsing}) {
  _parent._writeObjectKey(key);
  _parent.encodeMap<K, V>(value, keyUsing: keyUsing, valueUsing: valueUsing);
}