cake_wallet/lib/entities/format_amount.dart

8 lines
180 B
Dart
Raw Normal View History

String formatAmount(String amount) {
if (!amount.contains('.')) {
return amount + '.00';
} else if (amount.endsWith('.')) {
return amount + '00';
}
return amount;
}