AuthzPolicyAuthzRuleToRequestOperationMCPMethod.fromJson constructor

AuthzPolicyAuthzRuleToRequestOperationMCPMethod.fromJson(
  1. Map json_
)

Implementation

AuthzPolicyAuthzRuleToRequestOperationMCPMethod.fromJson(core.Map json_)
  : this(
      name: json_['name'] as core.String?,
      params: (json_['params'] as core.List?)
          ?.map(
            (value) => AuthzPolicyAuthzRuleStringMatch.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
    );