UFollowerFollowingCountResponse.fromMap constructor

UFollowerFollowingCountResponse.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory UFollowerFollowingCountResponse.fromMap(Map<String, dynamic> json) => UFollowerFollowingCountResponse(
      followers: json["followers"],
      followedUsers: json["followedUsers"],
      followedProducts: json["followedProducts"],
      followedCategories: json["followedCategories"],
    );