toFixedDoubleStringValue method

String toFixedDoubleStringValue(
  1. int fractionDigits
)

Export fixed double String with fractionDigits

Implementation

String toFixedDoubleStringValue(int fractionDigits) =>
    value.toStringAsFixed(fractionDigits);