toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final captchaChallenge = this.captchaChallenge;
final captchaResponse = this.captchaResponse;
final clientType = this.clientType;
final delegatedProjectNumber = this.delegatedProjectNumber;
final email = this.email;
final idToken = this.idToken;
final instanceId = this.instanceId;
final password = this.password;
final pendingIdToken = this.pendingIdToken;
final recaptchaVersion = this.recaptchaVersion;
final returnSecureToken = this.returnSecureToken;
final tenantId = this.tenantId;
return {
'captchaChallenge': ?captchaChallenge,
'captchaResponse': ?captchaResponse,
'clientType': ?clientType,
'delegatedProjectNumber': ?delegatedProjectNumber,
'email': ?email,
'idToken': ?idToken,
'instanceId': ?instanceId,
'password': ?password,
'pendingIdToken': ?pendingIdToken,
'recaptchaVersion': ?recaptchaVersion,
'returnSecureToken': ?returnSecureToken,
'tenantId': ?tenantId,
};
}