String toPercentString({int fractionDigits = 2}) { final value = (this ?? 0.0) * 100; return '${value.toStringAsFixed(fractionDigits)}%'; }