asU8 property

int get asU8

Implementation

int get asU8 {
  if (isNegative || this > BinaryOps.mask8) {
    throw ArgumentException.invalidOperationArguments(
      "asU32",
      reason: "Invalid 8-bit unsigned integer.",
    );
  }
  return this;
}