toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final category = this.category;
  final connectorType = this.connectorType;
  final createTime = this.createTime;
  final description = this.description;
  final displayName = this.displayName;
  final documentationUri = this.documentationUri;
  final eventingDetails = this.eventingDetails;
  final externalUri = this.externalUri;
  final labels = this.labels;
  final launchStage = this.launchStage;
  final marketplaceConnectorDetails = this.marketplaceConnectorDetails;
  final name = this.name;
  final tags = this.tags;
  final updateTime = this.updateTime;
  final webAssetsLocation = this.webAssetsLocation;
  return {
    'category': ?category,
    'connectorType': ?connectorType,
    'createTime': ?createTime,
    'description': ?description,
    'displayName': ?displayName,
    'documentationUri': ?documentationUri,
    'eventingDetails': ?eventingDetails,
    'externalUri': ?externalUri,
    'labels': ?labels,
    'launchStage': ?launchStage,
    'marketplaceConnectorDetails': ?marketplaceConnectorDetails,
    'name': ?name,
    'tags': ?tags,
    'updateTime': ?updateTime,
    'webAssetsLocation': ?webAssetsLocation,
  };
}