toPercentString method

String toPercentString()

Implementation

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