Create a new Decimal from an int.
factory Decimal.fromInt(int value) => Decimal.fromBigInt(BigInt.from(value));