toJson method

Map<String, dynamic> toJson()

Implementation

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