mirror of
https://github.com/koloideal/Casha.git
synced 2026-06-10 18:35:28 +03:00
8 lines
219 B
Dart
8 lines
219 B
Dart
import '../../core/constants.dart';
|
|
|
|
String formatAmount(String symbol, double amount, AmountFormat fmt) {
|
|
final formatted = fmt.format(amount);
|
|
if (symbol.isEmpty) return formatted;
|
|
return '$symbol$formatted';
|
|
}
|