decodeIntOrNull method

  1. @override
int? decodeIntOrNull()
override

Decodes the data as a nullable integer value.

Implementation

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