Monster.fromJson constructor
Implementation
factory Monster.fromJson(Map<String, dynamic> json) => Monster(
meta: json["_meta"],
key: json["key"],
name: json["name"],
description: json["description"],
instinct: json["instinct"],
tags: List<Tag>.from(json["tags"].map((x) => Tag.fromJson(x))).toList(),
moves: json["moves"] ?? [],
);