percent static method

String percent(
  1. double value
)

Implementation

static String percent(double value) {
  return '${value.toStringAsFixed(1).padLeft(5)}%';
}