toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createdAt = this.createdAt;
final customAttributes = this.customAttributes;
final customAuth = this.customAuth;
final disabled = this.disabled;
final displayName = this.displayName;
final email = this.email;
final emailVerified = this.emailVerified;
final lastLoginAt = this.lastLoginAt;
final localId = this.localId;
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 validSince = this.validSince;
final version = this.version;
return {
'createdAt': ?createdAt,
'customAttributes': ?customAttributes,
'customAuth': ?customAuth,
'disabled': ?disabled,
'displayName': ?displayName,
'email': ?email,
'emailVerified': ?emailVerified,
'lastLoginAt': ?lastLoginAt,
'localId': ?localId,
'passwordHash': ?passwordHash,
'passwordUpdatedAt': ?passwordUpdatedAt,
'phoneNumber': ?phoneNumber,
'photoUrl': ?photoUrl,
'providerUserInfo': ?providerUserInfo,
'rawPassword': ?rawPassword,
'salt': ?salt,
'screenName': ?screenName,
'validSince': ?validSince,
'version': ?version,
};
}