toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final attributes = this.attributes;
final createTime = this.createTime;
final details = this.details;
final name = this.name;
final sourceMetadata = this.sourceMetadata;
final spec = this.spec;
final updateTime = this.updateTime;
return {
'attributes': ?attributes,
'createTime': ?createTime,
'details': ?details,
'name': ?name,
'sourceMetadata': ?sourceMetadata,
'spec': ?spec,
'updateTime': ?updateTime,
};
}