ProductGroupMarketVertical constructor

ProductGroupMarketVertical({
  1. String? value,
  2. ProductGroup? productGroup,
  3. MarketVertical? marketVertical,
  4. required String id,
  5. DateTime? created,
  6. String? creator,
  7. DateTime? updated,
  8. String? updater,
})

Implementation

ProductGroupMarketVertical({
  this.value,
  this.productGroup,
  this.marketVertical,
  required String id,
  DateTime? created,
  String? creator,
  DateTime? updated,
  String? updater,
}) : super(
        id: id,
        created: created,
        updated: updated,
        updater: updater,
      );