moneyFmt method

String moneyFmt()

Implementation

String moneyFmt() {
  if (this == null) return '0.00';
  return this.toDouble().toStringAsFixed(2);
}