convertString static method

String convertString(
  1. dynamic value
)

Implementation

static String convertString(value) {
  double x = value / 100;
  double initValue = x * 100;
  return initValue.toStringAsFixed(0);
}