16 lines
368 B
Dart
16 lines
368 B
Dart
|
|
import 'package:intl/intl.dart';
|
||
|
|
|
||
|
|
extension IntegerExt on int {
|
||
|
|
String get currencyFormatRp => NumberFormat.currency(
|
||
|
|
locale: 'id',
|
||
|
|
symbol: 'Rp. ',
|
||
|
|
decimalDigits: 0,
|
||
|
|
).format(this);
|
||
|
|
|
||
|
|
String get currencyFormatRpV2 => NumberFormat.currency(
|
||
|
|
locale: 'id',
|
||
|
|
symbol: 'Rp ',
|
||
|
|
decimalDigits: 0,
|
||
|
|
).format(this);
|
||
|
|
}
|