toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (actionsConfig != null) 'actionsConfig': actionsConfig!,
  if (configTemplate != null) 'configTemplate': configTemplate!,
  if (createTime != null) 'createTime': createTime!,
  if (description != null) 'description': description!,
  if (displayName != null) 'displayName': displayName!,
  if (documentation != null) 'documentation': documentation!,
  if (gatewayType != null) 'gatewayType': gatewayType!,
  if (hostingService != null) 'hostingService': hostingService!,
  if (name != null) 'name': name!,
  if (ownershipType != null) 'ownershipType': ownershipType!,
  if (pluginCategory != null) 'pluginCategory': pluginCategory!,
  if (state != null) 'state': state!,
  if (type != null) 'type': type!,
  if (updateTime != null) 'updateTime': updateTime!,
};