encodeIntOrNull method

  1. @override
void encodeIntOrNull(
  1. int? value
)
override

Encodes a nullable integer value.

Implementation

@override
void encodeIntOrNull(int? value) {
  throw CodableException.unsupportedMethod('CsvEncoder', 'encodeIntOrNull',
      reason: 'Row-level encoding only supports encodeKeyed() and encodeMapped().');
}