AuthzPolicyAuthzRuleFrom.fromJson constructor

AuthzPolicyAuthzRuleFrom.fromJson(
  1. Map json_
)

Implementation

AuthzPolicyAuthzRuleFrom.fromJson(core.Map json_)
  : this(
      notSources: (json_['notSources'] as core.List?)
          ?.map(
            (value) => AuthzPolicyAuthzRuleFromRequestSource.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      sources: (json_['sources'] as core.List?)
          ?.map(
            (value) => AuthzPolicyAuthzRuleFromRequestSource.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
    );