toJson method

Map<String, dynamic> toJson()

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,
  };
}