u8 static method
Implementation
static BcsType<int,dynamic> u8([BcsTypeOptions<int,int>? options]) {
return uIntBcsType(
name: 'u8',
readMethod: 'read8',
writeMethod: 'write8',
size: 1,
maxValue: 255,
validate: options?.validate,
);
}