decodeList<E> abstract method

List<E> decodeList<E>({
  1. Decodable<E>? using,
})

Decodes the data as a list of elements.

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

Implementation

List<E> decodeList<E>({Decodable<E>? using});