toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final captchaChallenge = this.captchaChallenge;
  final captchaResponse = this.captchaResponse;
  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 password = this.password;
  final phoneNumber = this.phoneNumber;
  final photoUrl = this.photoUrl;
  final tenantId = this.tenantId;
  final tenantProjectNumber = this.tenantProjectNumber;
  return {
    'captchaChallenge': ?captchaChallenge,
    'captchaResponse': ?captchaResponse,
    'disabled': ?disabled,
    'displayName': ?displayName,
    'email': ?email,
    'emailVerified': ?emailVerified,
    'idToken': ?idToken,
    'instanceId': ?instanceId,
    'localId': ?localId,
    'password': ?password,
    'phoneNumber': ?phoneNumber,
    'photoUrl': ?photoUrl,
    'tenantId': ?tenantId,
    'tenantProjectNumber': ?tenantProjectNumber,
  };
}