Meta.fromJson constructor

Meta.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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))),
    );