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