class LoginModel { LoginModel(this.userName, this.token, this.userType); LoginModel.fromJson(Map json) : userName = json['display_name'], userType = json['user_type'], token = json['session_key']; final String userName; final String token; final String userType; Map toJson() => { 'name': userName, 'user_type': userType, 'token': token, }; }