factory Meta.fromJson(Map<String, dynamic> json) => Meta( profile: List<String>.from(json["profile"].map((x) => x)), tag: List<Tag>.from(json["tag"].map((x) => Tag.fromJson(x))), );