Converts this number to a percentage string with fractionDigits decimal places.
fractionDigits
String toPercent({int fractionDigits = 2}) { return '${(this * 100).toStringAsFixed(fractionDigits)}%'; }