toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final displayName = this.displayName;
  final email = this.email;
  final emailVerified = this.emailVerified;
  final expiresIn = this.expiresIn;
  final idToken = this.idToken;
  final kind = this.kind;
  final localId = this.localId;
  final newEmail = this.newEmail;
  final passwordHash = this.passwordHash;
  final photoUrl = this.photoUrl;
  final providerUserInfo = this.providerUserInfo;
  final refreshToken = this.refreshToken;
  return {
    'displayName': ?displayName,
    'email': ?email,
    'emailVerified': ?emailVerified,
    'expiresIn': ?expiresIn,
    'idToken': ?idToken,
    'kind': ?kind,
    'localId': ?localId,
    'newEmail': ?newEmail,
    'passwordHash': ?passwordHash,
    'photoUrl': ?photoUrl,
    'providerUserInfo': ?providerUserInfo,
    'refreshToken': ?refreshToken,
  };
}