readBool method

  1. @override
bool readBool()
override

Implementation

@override
bool readBool() {
  if (boolValue_ != null) {
    bool result = boolValue_;
    boolValue_ = null;
    return result;
  }
  return readByte() == Types.BOOLEAN_TRUE;
}