class SessionResponse { int? updatePasswordRequired; int? sessionExists; SessionResponse({this.updatePasswordRequired, this.sessionExists}); SessionResponse.fromJson(Map json) { updatePasswordRequired = json['update_password_required']; sessionExists = json['session_exists']; } Map toJson() { final Map data = new Map(); data['update_password_required'] = this.updatePasswordRequired; data['session_exists'] = this.sessionExists; return data; } }