I have a simple program below. The output is 64.5 it only shows one decimal value but I wanted it to display the last two decimal values.
Ex. Your change is 64.50 USD
How can I achieve this in dart/flutter?
void main() {
double money = 80.00;
double price = 15.50;
double change = money - price;
print('Your change is $change USD');
}