readBool method

bool readBool()

Reads the next byte as a bool using 0xFF as true and other values as false at the current readerIndex (inclusive).


Exceptions:

Implementation

bool readBool() => readByte() == 0xFF;