formatToTwoDecimalPlaces method
Formats the double to two decimal places.
Implementation
double formatToTwoDecimalPlaces() {
return (this * 100).round() / 100;
}
Formats the double to two decimal places.
double formatToTwoDecimalPlaces() {
return (this * 100).round() / 100;
}