symbolCurrencyFormat method
Creates a NumberFormat object as currency using the string as the currency symbol, along with the given locale and optional decimal digits.
Implementation
NumberFormat symbolCurrencyFormat({
String? locale,
String? name,
int? decimalDigits,
String? customPattern,
}) {
return NumberFormat.currency(
symbol: this,
name: name,
customPattern: customPattern,
locale: locale,
decimalDigits: decimalDigits,
);
}