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