AuthzPolicyAuthzRuleRequestResourceTagValueIdSet.fromJson constructor

AuthzPolicyAuthzRuleRequestResourceTagValueIdSet.fromJson(
  1. Map json_
)

Implementation

AuthzPolicyAuthzRuleRequestResourceTagValueIdSet.fromJson(core.Map json_)
  : this(
      ids: (json_['ids'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );