decodeIsNull method

  1. @override
bool decodeIsNull()
override

Checks if the data is null.

Implementation

@override
bool decodeIsNull() {
  switch (_parent.buffer[_parent._offset]) {
    case tokenComma:
    case tokenLineFeed:
      return true;
    default:
      return false;
  }
}