asU32 property

int get asU32

Implementation

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