u128 static method

BcsType<BigInt, dynamic> u128([
  1. BcsTypeOptions<String, dynamic>? options
])

Implementation

static BcsType<BigInt,dynamic> u128([BcsTypeOptions<String, dynamic>? options]) {
  return bigUIntBcsType(
    name: 'u128',
    readMethod: 'read128',
    writeMethod: 'write128',
    size: 16,
    maxValue: BigInt.two.pow(128) - BigInt.one,
    validate: options?.validate,
  );
}