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