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