u256 static method

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

Implementation

static BcsType<BigInt,dynamic> u256([BcsTypeOptions<String, dynamic>? options]) {
  return bigUIntBcsType(
    name: 'u256',
    readMethod: 'read256',
    writeMethod: 'write256',
    size: 32,
    maxValue: BigInt.two.pow(256) - BigInt.one,
    validate: options?.validate,
  );
}