u16 static method

BcsType<int, dynamic> u16([
  1. BcsTypeOptions<int, int>? options
])

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,
  );
}