toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final expireTime = this.expireTime;
final multiPlayerPersona = this.multiPlayerPersona;
final token = this.token;
return {
'expireTime': ?expireTime,
'multiPlayerPersona': ?multiPlayerPersona,
'token': ?token,
};
}