BackendBucketCdnPolicyCacheKeyPolicy.fromJson constructor

BackendBucketCdnPolicyCacheKeyPolicy.fromJson(
  1. Map json_
)

Implementation

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