Shorthand property to get only the regular items
@JsonKey(ignore: true) List<CartItem> get loriItems { return this.allItems.where((i) => !i.isPromotional && !i.isGift).toList(); }