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