CacheQueryOptions constructor
Implementation
factory CacheQueryOptions(
{bool? ignoreSearch, bool? ignoreMethod, bool? ignoreVary}) =>
CacheQueryOptions._(
ignoreSearch: ignoreSearch ?? false,
ignoreMethod: ignoreMethod ?? false,
ignoreVary: ignoreVary ?? false);