Returns a deserialized version of the BigInt.
static BigInt fromJson(dynamic value) { if (value is BigInt) return value; return BigInt.parse(value as String); }