BBM-Tracking/lib/resource/convert_money/convert_money.dart

11 lines
315 B
Dart

import 'package:intl/intl.dart';
class CurrencyFormat {
static String convertToIdr(dynamic number, int decimalDigit) {
NumberFormat currencyFormatter = NumberFormat.currency(
locale: 'id',
symbol: 'Rp. ',
decimalDigits: decimalDigit,
);
return currencyFormatter.format(number);
}
}