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