Uint32 constructor

Uint32(
  1. int value
)

Implementation

factory Uint32(int value) {
  if (value < 0) {
    throw ArgumentException.invalidOperationArguments(
      "Uint32",
      reason: 'value must be non-negative',
    );
  }
  return Uint32._(value & _mask32);
}