decodeList<E> method

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

Decodes the data as a list of elements.

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

Implementation

@override
List<E> decodeList<E>({Decodable<E>? using}) {
  throw CodableException.unsupportedMethod('CsvKeyedDecoder', 'decodeList',
      reason: 'The csv format does not support nested lists.');
}