formatWithCurrencyCode method

  1. @override
String formatWithCurrencyCode(
  1. double value, [
  2. String currencyCode = 'EUR'
])
override

Implementation

@override
String formatWithCurrencyCode(double value, [String currencyCode = 'EUR']) =>
    '$currencyCode ${value.format()}';