toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final displayName = this.displayName;
final expiresIn = this.expiresIn;
final gamePlayerId = this.gamePlayerId;
final idToken = this.idToken;
final isNewUser = this.isNewUser;
final localId = this.localId;
final playerId = this.playerId;
final refreshToken = this.refreshToken;
final teamPlayerId = this.teamPlayerId;
return {
'displayName': ?displayName,
'expiresIn': ?expiresIn,
'gamePlayerId': ?gamePlayerId,
'idToken': ?idToken,
'isNewUser': ?isNewUser,
'localId': ?localId,
'playerId': ?playerId,
'refreshToken': ?refreshToken,
'teamPlayerId': ?teamPlayerId,
};
}