toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final attributes = this.attributes;
final configVariables = this.configVariables;
final projectId = this.projectId;
final topicId = this.topicId;
return {
'attributes': ?attributes,
'configVariables': ?configVariables,
'projectId': ?projectId,
'topicId': ?topicId,
};
}