formatCurrency method
Implementation
String formatCurrency() {
final formatter = NumberFormat.currency(locale: 'pt_BR', symbol: 'R\$');
return formatter.format(this);
}
String formatCurrency() {
final formatter = NumberFormat.currency(locale: 'pt_BR', symbol: 'R\$');
return formatter.format(this);
}