u16 static method
Implementation
static BcsType<int,dynamic> u16([BcsTypeOptions<int,int>? options]) {
return uIntBcsType(
name: 'u16',
readMethod: 'read16',
writeMethod: 'write16',
size: 2,
maxValue: 65535,
validate: options?.validate,
);
}