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