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('CsvEncoder', 'encodeIterableOrNull',
reason: 'Row-level encoding only supports encodeKeyed() and encodeMapped().');
}