encodeNumOrNull method

  1. @override
void encodeNumOrNull(
  1. num? value
)
override

Encodes a nullable num value.

Implementation

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