Decimal.fromBigInt constructor

Decimal.fromBigInt(
  1. BigInt value
)

Implementation

factory Decimal.fromBigInt(BigInt value) =>
    Decimal._fromRational(Rational(value));