toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final captchaChallenge = this.captchaChallenge;
  final captchaResponse = this.captchaResponse;
  final clientType = this.clientType;
  final disabled = this.disabled;
  final displayName = this.displayName;
  final email = this.email;
  final emailVerified = this.emailVerified;
  final idToken = this.idToken;
  final instanceId = this.instanceId;
  final localId = this.localId;
  final mfaInfo = this.mfaInfo;
  final password = this.password;
  final phoneNumber = this.phoneNumber;
  final photoUrl = this.photoUrl;
  final recaptchaVersion = this.recaptchaVersion;
  final targetProjectId = this.targetProjectId;
  final tenantId = this.tenantId;
  return {
    'captchaChallenge': ?captchaChallenge,
    'captchaResponse': ?captchaResponse,
    'clientType': ?clientType,
    'disabled': ?disabled,
    'displayName': ?displayName,
    'email': ?email,
    'emailVerified': ?emailVerified,
    'idToken': ?idToken,
    'instanceId': ?instanceId,
    'localId': ?localId,
    'mfaInfo': ?mfaInfo,
    'password': ?password,
    'phoneNumber': ?phoneNumber,
    'photoUrl': ?photoUrl,
    'recaptchaVersion': ?recaptchaVersion,
    'targetProjectId': ?targetProjectId,
    'tenantId': ?tenantId,
  };
}