encodeIterableOrNull<E> method
Encodes a nullable iterable of E
.
Optionally takes an Encodable function to encode each element.
Implementation
@override
void encodeIterableOrNull<E>(Iterable<E>? value, {Encodable<E>? using}) {
throw CodableException.unsupportedMethod('CsvValueEncoder', 'encodeIterableOrNull',
reason: 'The csv format does not support nested iterables.');
}