PluralOperands.fromFixedDecimal constructor

PluralOperands.fromFixedDecimal(
  1. FixedDecimal x
)

Construct from a FixedDecimal

Retains at most 18 digits each from the integer and fraction parts.

Implementation

factory PluralOperands.fromFixedDecimal(FixedDecimal x) {
  final result = _icu4x_PluralOperands_from_fixed_decimal_mv1(x._ffi);
  return PluralOperands._fromFfi(result, []);
}