fromJsonDefault static method

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

Implementation

static Genre fromJsonDefault(Map<String, dynamic> json) {
  return Genre(
    id: json["name"],
    name: json["name"],
    description: json["description"],
  );
}