asI32 property

int get asI32

Implementation

int get asI32 {
  if (this > BinaryOps.maxInt32 || this < BinaryOps.minInt32) {
    throw ArgumentException.invalidOperationArguments(
      "asI128",
      reason: "Invalid 32-bit signed integer.",
    );
  }
  return this;
}