u64 static method
Implementation
static BcsType<BigInt,dynamic> u64([BcsTypeOptions<String, dynamic>? options]) {
return bigUIntBcsType(
name: 'u64',
readMethod: 'read64',
writeMethod: 'write64',
size: 8,
maxValue: BigInt.two.pow(64) - BigInt.one,
validate: options?.validate,
);
}