Uint256.fromHex constructor

Uint256.fromHex(
  1. String hex
)

Implementation

factory Uint256.fromHex(String hex) {
  return Uint256(hexToInt(hex));
}