asPercent method

String asPercent()

Implementation

String asPercent() {
  final format = this < 100 ? "##0.00" : "#,###";
  final v = intl.NumberFormat(format, "en_US").format(this);
  return "${this >= 0 ? '+' : ''}$v%";
}