u32 static method
Implementation
static BcsType<int,dynamic> u32([BcsTypeOptions<int,int>? options]) {
return uIntBcsType(
name: 'u32',
readMethod: 'read32',
writeMethod: 'write32',
size: 4,
maxValue: 4294967295,
validate: options?.validate,
);
}