formatAmount method

String formatAmount(
  1. double amount
)

Implementation

String formatAmount(double amount) {
  return '$symbol${amount.toStringAsFixed(decimalPlaces)}';
}