decodeIsNull method

  1. @override
bool decodeIsNull()
override

Checks if the data is null.

Implementation

@override
bool decodeIsNull() {
  if (_done) return false;
  final key = keys.current;
  return decoder.decodeIsNull(key is String ? key : '', id: key is int ? key : null);
}