isLowStock property
bool
get
isLowStock
Check if stock is low
Implementation
bool get isLowStock {
if (minQuantity == null) return false;
return availableQuantity <= minQuantity!;
}
Check if stock is low
bool get isLowStock {
if (minQuantity == null) return false;
return availableQuantity <= minQuantity!;
}