ProductMadeWithout constructor

ProductMadeWithout({
  1. Product? product,
  2. MadeWithout? madeWithout,
  3. required String id,
  4. DateTime? created,
  5. String? creator,
  6. DateTime? updated,
  7. String? updater,
})

Implementation

ProductMadeWithout({
  this.product,
  this.madeWithout,
  required String id,
  DateTime? created,
  String? creator,
  DateTime? updated,
  String? updater,
}) : super(
        id: id,
        created: created,
        updated: updated,
        updater: updater,
      );