toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final displayName = this.displayName;
final email = this.email;
final expiresIn = this.expiresIn;
final idToken = this.idToken;
final kind = this.kind;
final localId = this.localId;
final oauthAccessToken = this.oauthAccessToken;
final oauthAuthorizationCode = this.oauthAuthorizationCode;
final oauthExpireIn = this.oauthExpireIn;
final photoUrl = this.photoUrl;
final refreshToken = this.refreshToken;
final registered = this.registered;
return {
'displayName': ?displayName,
'email': ?email,
'expiresIn': ?expiresIn,
'idToken': ?idToken,
'kind': ?kind,
'localId': ?localId,
'oauthAccessToken': ?oauthAccessToken,
'oauthAuthorizationCode': ?oauthAuthorizationCode,
'oauthExpireIn': ?oauthExpireIn,
'photoUrl': ?photoUrl,
'refreshToken': ?refreshToken,
'registered': ?registered,
};
}