class UsersBasedOnSearchModel { String? userId; String? userName; String? email; String? employeeId; int? languageId; String? extensionNo; String? phoneNumber; String? positionName; String? position; bool? isActive; UsersBasedOnSearchModel({this.userId, this.userName, this.email, this.employeeId, this.languageId, this.extensionNo, this.phoneNumber, this.positionName, this.position, this.isActive}); UsersBasedOnSearchModel.fromJson(Map json) { userId = json['userId']; userName = json['userName']; email = json['email']; employeeId = json['employeeId']; languageId = json['languageId']; extensionNo = json['extensionNo']; phoneNumber = json['phoneNumber']; positionName = json['positionName']; position = json['position']; isActive = json['isActive']; } Map toJson() { final Map data = new Map(); data['userId'] = this.userId; data['userName'] = this.userName; data['email'] = this.email; data['employeeId'] = this.employeeId; data['languageId'] = this.languageId; data['extensionNo'] = this.extensionNo; data['phoneNumber'] = this.phoneNumber; data['positionName'] = this.positionName; data['position'] = this.position; data['isActive'] = this.isActive; return data; } }