decimalFromDecimal method

Decimal decimalFromDecimal(
  1. Decimal decimal
)

Implementation

Decimal decimalFromDecimal(Decimal decimal) {
  return Decimal.parse(decimal.toStringAsFixed(decimalDigits!));
}