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