CurrencyAmount constructor

CurrencyAmount(
  1. String s,
  2. Currency currency
)

Implementation

factory CurrencyAmount(String s, Currency currency) {
  final decimal = Decimal(s);
  return CurrencyAmount.fromDecimal(decimal, currency: currency);
}