decodeListOrNull<E> abstract method

List<E>? decodeListOrNull<E>(
  1. String key, {
  2. int? id,
  3. Decodable<E>? using,
})

Decodes the data for the given key or id as a nullable list of elements.

Optionally takes a Decodable to decode the elements of the list.

Implementation

List<E>? decodeListOrNull<E>(String key, {int? id, Decodable<E>? using});