ProductWarning constructor

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

Implementation

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