toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final captchaChallenge = this.captchaChallenge;
final captchaResponse = this.captchaResponse;
final createdAt = this.createdAt;
final customAttributes = this.customAttributes;
final delegatedProjectNumber = this.delegatedProjectNumber;
final deleteAttribute = this.deleteAttribute;
final deleteProvider = this.deleteProvider;
final disableUser = this.disableUser;
final displayName = this.displayName;
final email = this.email;
final emailVerified = this.emailVerified;
final idToken = this.idToken;
final instanceId = this.instanceId;
final lastLoginAt = this.lastLoginAt;
final localId = this.localId;
final oobCode = this.oobCode;
final password = this.password;
final phoneNumber = this.phoneNumber;
final photoUrl = this.photoUrl;
final provider = this.provider;
final returnSecureToken = this.returnSecureToken;
final upgradeToFederatedLogin = this.upgradeToFederatedLogin;
final validSince = this.validSince;
return {
'captchaChallenge': ?captchaChallenge,
'captchaResponse': ?captchaResponse,
'createdAt': ?createdAt,
'customAttributes': ?customAttributes,
'delegatedProjectNumber': ?delegatedProjectNumber,
'deleteAttribute': ?deleteAttribute,
'deleteProvider': ?deleteProvider,
'disableUser': ?disableUser,
'displayName': ?displayName,
'email': ?email,
'emailVerified': ?emailVerified,
'idToken': ?idToken,
'instanceId': ?instanceId,
'lastLoginAt': ?lastLoginAt,
'localId': ?localId,
'oobCode': ?oobCode,
'password': ?password,
'phoneNumber': ?phoneNumber,
'photoUrl': ?photoUrl,
'provider': ?provider,
'returnSecureToken': ?returnSecureToken,
'upgradeToFederatedLogin': ?upgradeToFederatedLogin,
'validSince': ?validSince,
};
}