Label.fromJSON constructor
Implementation
Label.fromJSON(Map<String, dynamic> json)
: name = json['name'],
followersCount = json['followersCount'],
activitiesCount = json['activitiesCount'],
isFollowedByMe = json['isFollowedByMe'],
popularity =
json['popularity'] == null ? 0 : json['popularity'].toDouble();