10 lines
193 B
Dart
Raw Normal View History

2025-08-13 00:26:59 +07:00
part of 'extension.dart';
extension IntegerExt on int {
String get currencyFormatRp => NumberFormat.currency(
locale: 'id',
symbol: 'Rp. ',
decimalDigits: 0,
).format(this);
}