decodeListOrNull<E> method
Decodes the data as a nullable list of elements.
Optionally takes a Decodable to decode the elements of the list.
Implementation
@override
List<E>? decodeListOrNull<E>({Decodable<E>? using}) {
throw CodableException.unsupportedMethod('CsvKeyedDecoder', 'decodeListOrNull',
reason: 'The csv format does not support nested lists.');
}