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