decodeDoubleOrNull method

  1. @override
double? decodeDoubleOrNull()
override

Decodes the data as a nullable double value.

Implementation

@override
double? decodeDoubleOrNull() {
  throw CodableException.unsupportedMethod('CsvDecoder', 'decodeDoubleOrNull',
      reason: 'Row-level decoding only supports decodeKeyed() and decodeMapped().');
}