ModelCreate constructor

ModelCreate({
  1. required String id,
  2. required String project,
  3. String? nameDe,
  4. String? nameEn,
  5. String? nameFr,
  6. String? nameIt,
  7. required String slug,
})

Returns a new ModelCreate instance.

Implementation

ModelCreate({
  required this.id,
  required this.project,
  this.nameDe,
  this.nameEn,
  this.nameFr,
  this.nameIt,
  required this.slug,
});