asInt32 property
int
get
asInt32
Implementation
int get asInt32 {
if (this > maxInt32 || this < minInt32) {
throw ArgumentException("Invalid Signed int 32.", details: {
"excepted": mask32.bitLength,
"bitLength": bitLength,
"value": toString()
});
}
return this;
}