encodeIterable<E> abstract method

void encodeIterable<E>(
  1. String key,
  2. Iterable<E> value, {
  3. int? id,
  4. Encodable<E>? using,
})

Encodes an iterable of E for the given key or id.

Optionally takes an Encodable function to encode each element.

Implementation

void encodeIterable<E>(String key, Iterable<E> value, {int? id, Encodable<E>? using});