Tag.fromJson constructor

Tag.fromJson(
  1. JSONMap json
)

Implementation

factory Tag.fromJson(JSONMap json) => Tag(
      name: json["name"],
      taggingsCount: json["taggings_count"],
    );