ConnectorConfigurationEndpoint.fromJson constructor

ConnectorConfigurationEndpoint.fromJson(
  1. Map json_
)

Implementation

ConnectorConfigurationEndpoint.fromJson(core.Map json_)
    : this(
        hostPort: json_.containsKey('hostPort')
            ? json_['hostPort'] as core.String
            : null,
      );