toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createdAt = this.createdAt;
final customAttributes = this.customAttributes;
final customAuth = this.customAuth;
final dateOfBirth = this.dateOfBirth;
final disabled = this.disabled;
final displayName = this.displayName;
final email = this.email;
final emailLinkSignin = this.emailLinkSignin;
final emailVerified = this.emailVerified;
final initialEmail = this.initialEmail;
final language = this.language;
final lastLoginAt = this.lastLoginAt;
final lastRefreshAt = this.lastRefreshAt;
final localId = this.localId;
final mfaInfo = this.mfaInfo;
final passwordHash = this.passwordHash;
final passwordUpdatedAt = this.passwordUpdatedAt;
final phoneNumber = this.phoneNumber;
final photoUrl = this.photoUrl;
final providerUserInfo = this.providerUserInfo;
final rawPassword = this.rawPassword;
final salt = this.salt;
final screenName = this.screenName;
final tenantId = this.tenantId;
final timeZone = this.timeZone;
final validSince = this.validSince;
final version = this.version;
return {
'createdAt': ?createdAt,
'customAttributes': ?customAttributes,
'customAuth': ?customAuth,
'dateOfBirth': ?dateOfBirth,
'disabled': ?disabled,
'displayName': ?displayName,
'email': ?email,
'emailLinkSignin': ?emailLinkSignin,
'emailVerified': ?emailVerified,
'initialEmail': ?initialEmail,
'language': ?language,
'lastLoginAt': ?lastLoginAt,
'lastRefreshAt': ?lastRefreshAt,
'localId': ?localId,
'mfaInfo': ?mfaInfo,
'passwordHash': ?passwordHash,
'passwordUpdatedAt': ?passwordUpdatedAt,
'phoneNumber': ?phoneNumber,
'photoUrl': ?photoUrl,
'providerUserInfo': ?providerUserInfo,
'rawPassword': ?rawPassword,
'salt': ?salt,
'screenName': ?screenName,
'tenantId': ?tenantId,
'timeZone': ?timeZone,
'validSince': ?validSince,
'version': ?version,
};
}