encodeDoubleOrNull method

  1. @override
void encodeDoubleOrNull(
  1. double? value
)
override

Encodes a nullable double value.

Implementation

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