$RouteFaultInjectionPolicyDelay.fromJson constructor

$RouteFaultInjectionPolicyDelay.fromJson(
  1. Map json_
)

Implementation

$RouteFaultInjectionPolicyDelay.fromJson(core.Map json_)
    : this(
        fixedDelay: json_.containsKey('fixedDelay')
            ? json_['fixedDelay'] as core.String
            : null,
        percentage: json_.containsKey('percentage')
            ? json_['percentage'] as core.int
            : null,
      );