11 lines
315 B
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);
|
||
|
}
|
||
|
}
|