Shorthand property to get all separated items
@JsonKey(ignore: true) List<CartItem> get separatedItems { return this.allItems.where((i) => i.quantitySeparated > 0).toList(); }