isLowStock property

bool get isLowStock

Check if stock is low

Implementation

bool get isLowStock {
  if (minQuantity == null) return false;
  return availableQuantity <= minQuantity!;
}