asUint32 property
int
get
asUint32
Implementation
int get asUint32 {
if (isNegative || this > maxUint32) {
throw ArgumentException("Invalid Unsigned int 32.", details: {
"excepted": mask32.bitLength,
"bitLength": bitLength,
"value": toString()
});
}
return this;
}