convertDouble static method

double convertDouble(
  1. dynamic value
)

Implementation

static double convertDouble(value) {
  double x = value / 100;
  return x;
}