ProfileSkill constructor

ProfileSkill({
  1. String id = '',
  2. String name = '',
  3. String description = '',
  4. ExperienceLevel experienceLevel = ExperienceLevel.beginner,
  5. double price = 0,
})

Implementation

ProfileSkill({
  this.id = '',
  this.name = '',
  this.description = '',
  this.experienceLevel = ExperienceLevel.beginner,
  this.price = 0,
});