fromJsonDefault static method

ProfileSkill fromJsonDefault(
  1. Map<String, dynamic> json
)

Implementation

static ProfileSkill fromJsonDefault(Map<String, dynamic> json) {
  return ProfileSkill(
    id: json['name'] ?? '',
    name: json['name'] ?? '',
    description: json['description'] ?? '',
    experienceLevel: ExperienceLevel.beginner,
    price: 0,
  );
}