UserListResponse.fromJson constructor
Implementation
factory UserListResponse.fromJson(Map<String, dynamic> json) {
return UserListResponse(
data: json['data'] != null
? List<Map<String, dynamic>>.from(json['data'])
: [],
nextCursor: json['nextCursor'],
);
}