getBool method

bool getBool(
  1. int offset
)

Reads 1-byte as a boolean. The offset must satisfy the relations 0offsetoffset+1this.length.

Implementation

bool getBool(final int offset) {
  return asByteData().getUint8(offset) != 0;
}