$CdnPolicyNegativeCachingPolicy.fromJson constructor

$CdnPolicyNegativeCachingPolicy.fromJson(
  1. Map json_
)

Implementation

$CdnPolicyNegativeCachingPolicy.fromJson(core.Map json_)
    : this(
        code: json_.containsKey('code') ? json_['code'] as core.int : null,
        ttl: json_.containsKey('ttl') ? json_['ttl'] as core.int : null,
      );