price property

String price

Implementation

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

  return NumberFormat("#,###").format(this!.ceil());
}