You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cake_wallet/lib/src/domain/common/calculate_fiat_amount.dart

14 lines
329 B

String calculateFiatAmount({double price, String cryptoAmount}) {
if (price == null || cryptoAmount == null) {
return '0.00';
}
final _amount = double.parse(cryptoAmount);
final result = price * _amount;
if (result == 0.0) {
return '0.00';
}
return result > 0.01 ? result.toStringAsFixed(2) : '< 0.01';
}