price property
Implementation
String get price {
if (this == null) {
return "0";
}
return NumberFormat("#,###").format(this!.ceil());
}
String get price {
if (this == null) {
return "0";
}
return NumberFormat("#,###").format(this!.ceil());
}