mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-12-10 01:07:29 +00:00
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,
|
|
);
|