customPrice property
double?
get
customPrice
Implementation
double? get customPrice {
final text = priceController?.text ?? '';
return text.isEmpty ? null : double.tryParse(text);
}
double? get customPrice {
final text = priceController?.text ?? '';
return text.isEmpty ? null : double.tryParse(text);
}