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