formattedAmount property

String get formattedAmount

Implementation

String get formattedAmount {
  double hundredth = amount / 100;
  String hundredthInDecimal = NumberFormat("#,###.00").format(hundredth);
  return hundredthInDecimal;
}