u64 static method

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

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