ProductNutrition constructor

ProductNutrition({
  1. String? per100G,
  2. String? perPortion,
  3. String? light,
  4. double? percentageOfReferenceIntake,
  5. Product? product,
  6. Nutrition? nutrition,
  7. required String id,
  8. DateTime? created,
  9. String? creator,
  10. DateTime? updated,
  11. String? updater,
})

Implementation

ProductNutrition({
  this.per100G,
  this.perPortion,
  this.light,
  this.percentageOfReferenceIntake,
  this.product,
  this.nutrition,
  required String id,
  DateTime? created,
  String? creator,
  DateTime? updated,
  String? updater,
}) : super(
        id: id,
        created: created,
        updated: updated,
        updater: updater,
      );