toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final acsEndpoint = this.acsEndpoint;
final email = this.email;
final firstName = this.firstName;
final isNewUser = this.isNewUser;
final lastName = this.lastName;
final relayState = this.relayState;
final samlResponse = this.samlResponse;
return {
'acsEndpoint': ?acsEndpoint,
'email': ?email,
'firstName': ?firstName,
'isNewUser': ?isNewUser,
'lastName': ?lastName,
'relayState': ?relayState,
'samlResponse': ?samlResponse,
};
}