toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final catalog = this.catalog;
final storage = this.storage;
final technologyType = this.technologyType;
return {
'catalog': ?catalog,
'storage': ?storage,
'technologyType': ?technologyType,
};
}