encodeIterableOrNull<E> method
void
encodeIterableOrNull<E>(})
override
Encodes a nullable iterable of E
for the given key or id.
Optionally takes an Encodable function to encode each element.
Implementation
@override
void encodeIterableOrNull<E>(String key, Iterable<E>? value, {int? id, Encodable<E>? using}) {
_parent._writeObjectKey(key);
_parent.encodeIterableOrNull<E>(value, using: using);
}