fixed method

String fixed(
  1. int decimalPlaces
)

Implementation

String fixed(int decimalPlaces) {
  return roundTo(decimalPlaces).toStringAsFixed(decimalPlaces);
}