ServiceLbPolicyFailoverConfig.fromJson constructor

ServiceLbPolicyFailoverConfig.fromJson(
  1. Map json_
)

Implementation

ServiceLbPolicyFailoverConfig.fromJson(core.Map json_)
    : this(
        failoverHealthThreshold: json_.containsKey('failoverHealthThreshold')
            ? json_['failoverHealthThreshold'] as core.int
            : null,
      );