toPercent method

String toPercent()

Implementation

String toPercent() {
  final value = (this ?? 0) * 100;
  return '$value%';
}