MissionTypeModel constructor

MissionTypeModel({
  1. int? id,
  2. String? missionTypeName,
  3. String? instruction,
  4. dynamic shortDescription,
  5. String? teaserVideoUrl,
  6. String? tutoMissionTypeVideoUrl,
  7. String? tutoSellerVideoUrl,
  8. String? pictureUrl,
  9. String? colorCode,
})

Implementation

MissionTypeModel(
    {this.id,
    this.missionTypeName,
    this.instruction,
    this.shortDescription,
    this.teaserVideoUrl,
    this.tutoMissionTypeVideoUrl,
    this.tutoSellerVideoUrl,
    this.pictureUrl,
    this.colorCode});