class LeadListViewResponse { List? sources; List? teams; List? states; List? employees; String? error; String? message; LeadListViewResponse({ this.sources, this.teams, this.states, this.employees, this.error, this.message, }); LeadListViewResponse.fromJson(Map json) { if (json['sources'] != null) { sources = []; json['sources'].forEach((v) { sources!.add(Sources.fromJson(v)); }); } if (json['teams'] != null) { teams = []; json['teams'].forEach((v) { teams!.add(Teams.fromJson(v)); }); } if (json['states'] != null) { states = []; json['states'].forEach((v) { states!.add(States.fromJson(v)); }); } if (json['employees'] != null) { employees = []; json['employees'].forEach((v) { employees!.add(Employees.fromJson(v)); }); } error = json['error']; message = json['message']; } Map toJson() { final Map data = {}; if (sources != null) { data['sources'] = sources!.map((v) => v.toJson()).toList(); } if (teams != null) { data['teams'] = teams!.map((v) => v.toJson()).toList(); } if (states != null) { data['states'] = states!.map((v) => v.toJson()).toList(); } if (employees != null) { data['employees'] = employees!.map((v) => v.toJson()).toList(); } data['error'] = error; data['message'] = message; return data; } } class Sources { String? id; String? name; Sources({this.id, this.name}); Sources.fromJson(Map json) { id = json['id']; name = json['name']; } Map toJson() { final Map data = {}; data['id'] = id; data['name'] = name; return data; } } class Teams { String? id; String? name; Teams({this.id, this.name}); Teams.fromJson(Map json) { id = json['id']; name = json['name']; } Map toJson() { final Map data = {}; data['id'] = id; data['name'] = name; return data; } } class States { String? id; String? name; States({this.id, this.name}); States.fromJson(Map json) { id = json['id']; name = json['name']; } Map toJson() { final Map data = {}; data['id'] = id; data['name'] = name; return data; } } class Employees { String? id; String? name; Employees({this.id, this.name}); Employees.fromJson(Map json) { id = json['id']; name = json['name']; } Map toJson() { final Map data = {}; data['id'] = id; data['name'] = name; return data; } }