EndpointMatcherMetadataLabelMatcherMetadataLabels.fromJson constructor

EndpointMatcherMetadataLabelMatcherMetadataLabels.fromJson(
  1. Map json_
)

Implementation

EndpointMatcherMetadataLabelMatcherMetadataLabels.fromJson(core.Map json_)
    : this(
        labelName: json_.containsKey('labelName')
            ? json_['labelName'] as core.String
            : null,
        labelValue: json_.containsKey('labelValue')
            ? json_['labelValue'] as core.String
            : null,
      );