CacheInvalidationRule.fromJson constructor

CacheInvalidationRule.fromJson(
  1. Map json_
)

Implementation

CacheInvalidationRule.fromJson(core.Map json_)
    : this(
        host: json_.containsKey('host') ? json_['host'] as core.String : null,
        path: json_.containsKey('path') ? json_['path'] as core.String : null,
      );