V2TimFollowInfo.fromJson constructor

V2TimFollowInfo.fromJson(
  1. Map json
)

Implementation

V2TimFollowInfo.fromJson(Map json) {
  json = Utils.formatJson(json);
  resultInfo = json['resultInfo'];
  followersCount = json['followersCount'];
  resultCode = json['resultCode'];
  userID = json['userID'] ?? "";
  mutualFollowersCount = json['mutualFollowersCount'];
  followingCount = json['followingCount'];
}