RhythmBox/lib/collections/formatters.dart

9 lines
198 B
Dart
Raw Permalink Normal View History

2024-08-26 17:49:05 +00:00
import 'package:intl/intl.dart';
final compactNumberFormatter = NumberFormat.compact();
final usdFormatter = NumberFormat.compactCurrency(
locale: 'en-US',
2024-08-27 06:48:31 +00:00
symbol: r'$',
2024-08-26 17:49:05 +00:00
decimalDigits: 2,
);