Nat32 constructor
Nat32([
- int? _v
Implementation
Nat32([this._v]) {
if (_v!=null) {
if (_v! < 0 || _v! > pow(2, 32)-1 ) {
throw Exception('CandidType: Nat32 value can be between 0<=value && value <= ${pow(2, 32)-1} ');
}
}
}