decodeStringOrNull method

  1. @override
String? decodeStringOrNull()
override

Decodes the data as a nullable string value.

Implementation

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