fromJsonDefault static method
Implementation
static Instrument fromJsonDefault(Map<String, dynamic> json) {
return Instrument(
id: json["name"],
name: json["name"],
description: json["description"] ?? "",
instrumentLevel: InstrumentLevel.notDetermined,
isMain: false,
isFavorite: false,
model: "",
);
}