CacheInvalidationRule.fromJson constructor

CacheInvalidationRule.fromJson(
  1. Map json_
)

Implementation

CacheInvalidationRule.fromJson(core.Map json_)
  : this(
      cacheTags:
          (json_['cacheTags'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      host: json_['host'] as core.String?,
      path: json_['path'] as core.String?,
    );