UserList.fromJson constructor
Implementation
factory UserList.fromJson(Map<String, dynamic> json) => UserList(
data: json["data"] == null
? null
: List<Profile>.from(json["data"].map((x) => Profile.fromJson(x))),
status: json["status"],
);