mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
13 lines
No EOL
277 B
Dart
13 lines
No EOL
277 B
Dart
String calculateFiatAmountRaw({required double cryptoAmount, double? price}) {
|
|
if (price == null) {
|
|
return '0.00';
|
|
}
|
|
|
|
final result = price * cryptoAmount;
|
|
|
|
if (result == 0.0) {
|
|
return '0.00';
|
|
}
|
|
|
|
return result > 0.01 ? result.toStringAsFixed(2) : '< 0.01';
|
|
} |