text property

String text

Implementation

String get text {
  if (this == null) {
    return "0";
  }

  return this!.toStringAsFixed(2).replaceAll('.00', '');
}