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}) {
_parent._writeObjectKey(key);
_parent.encodeIterable<E>(value, using: using);
}