9 lines
198 B
Dart
Executable File
9 lines
198 B
Dart
Executable File
import 'package:intl/intl.dart';
|
|
|
|
final compactNumberFormatter = NumberFormat.compact();
|
|
final usdFormatter = NumberFormat.compactCurrency(
|
|
locale: 'en-US',
|
|
symbol: r'$',
|
|
decimalDigits: 2,
|
|
);
|