ProductGroup constructor

ProductGroup({
  1. String? longDescription,
  2. String? shortDescription,
  3. String? longName,
  4. String? shortName,
  5. String? productGroupId,
  6. String? quickFindCode,
  7. bool? released,
  8. double? rrp,
  9. double? rrpEur,
  10. List<ProductGroupMealCategorisation>? productGroupMealCategorisation,
  11. List<ProductGroupMarketVertical>? productGroupMarketVertical,
  12. List<ProductGroupRanking>? productGroupRanking,
  13. required int id,
  14. DateTime? created,
  15. String? creator,
  16. DateTime? updated,
  17. String? updater,
})

Implementation

ProductGroup({
  this.longDescription,
  this.shortDescription,
  this.longName,
  this.shortName,
  this.productGroupId,
  this.quickFindCode,
  this.released,
  this.rrp,
  this.rrpEur,
  this.productGroupMealCategorisation,
  this.productGroupMarketVertical,
  this.productGroupRanking,
  required int id,
  DateTime? created,
  String? creator,
  DateTime? updated,
  String? updater,
}) : super(
        id: id,
        created: created,
        updated: updated,
        updater: updater,
      );