encodeIterable<E> method
void
encodeIterable<E>(})
override
Encodes an iterable of E
for the given key or id.
Optionally takes an Encodable function to encode each element.
Implementation
@override
void encodeIterable<E>(String key, Iterable<E> value, {int? id, Encodable<E>? using}) {
_value[key] = _encodeIterable(value, using);
}