ServiceNetworking.fromJson constructor

ServiceNetworking.fromJson(
  1. Map json_
)

Implementation

ServiceNetworking.fromJson(core.Map json_)
  : this(
      deployment: json_['deployment'] as core.String?,
      disablePodOverprovisioning:
          json_['disablePodOverprovisioning'] as core.bool?,
      podSelectorLabel: json_['podSelectorLabel'] as core.String?,
      service: json_['service'] as core.String?,
    );