decodeBoolOrNull method

  1. @override
bool? decodeBoolOrNull()
override

Decodes the data as a nullable boolean value.

Implementation

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