formatToTwoDecimalPlaces method

double formatToTwoDecimalPlaces()

Formats the double to two decimal places.

Implementation

double formatToTwoDecimalPlaces() {
  return (this * 100).round() / 100;
}