@override Uint256 fromJson(dynamic json) { if (json is String) { return Uint256(BigInt.parse(json)); } return Uint256(BigInt.from(json)); }