toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (apiProxyType != null) 'apiProxyType': apiProxyType!,
      if (createdAt != null) 'createdAt': createdAt!,
      if (deploymentType != null) 'deploymentType': deploymentType!,
      if (description != null) 'description': description!,
      if (displayName != null) 'displayName': displayName!,
      if (forwardProxyUri != null) 'forwardProxyUri': forwardProxyUri!,
      if (hasAttachedFlowHooks != null)
        'hasAttachedFlowHooks': hasAttachedFlowHooks!,
      if (lastModifiedAt != null) 'lastModifiedAt': lastModifiedAt!,
      if (name != null) 'name': name!,
      if (nodeConfig != null) 'nodeConfig': nodeConfig!,
      if (properties != null) 'properties': properties!,
      if (state != null) 'state': state!,
      if (type != null) 'type': type!,
    };