compactOrOrigin property

String get compactOrOrigin

Implementation

String get compactOrOrigin {
  return this % 1 == 0
      ? toInt().toString()
      : toStringAsFixed(2).replaceFirst(RegExp(r'0+$'), '').replaceFirst(RegExp(r'\.$'), '');
}