fromCurrencyAmount method

  1. @override
String fromCurrencyAmount(
  1. String amount,
  2. String currency
)
override

No description provided for @fromCurrencyAmount.

In en, this message translates to: 'From {amount} {currency}'

Implementation

@override
String fromCurrencyAmount(String amount, String currency) {
  return 'From $amount $currency';
}