kCurrencyFormatterNoCents top-level property

NumberFormat kCurrencyFormatterNoCents
final

Number format that displays currency in the South African locale with the symbol "R" and no decimal digits.

Implementation

final kCurrencyFormatterNoCents = NumberFormat.currency(
  locale: 'en_ZA',
  symbol: 'R',
  decimalDigits: 0,
);