delegate property
CacheQueryOptions
get
delegate
Implementation
interop.CacheQueryOptions get delegate {
// Only set the properties that are not null.
interop.CacheQueryOptions delegate = interop.CacheQueryOptions();
if (ignoreSearch != null) delegate = delegate..ignoreSearch = ignoreSearch!;
if (ignoreMethod != null) delegate = delegate..ignoreMethod = ignoreMethod!;
if (ignoreVary != null) delegate = delegate..ignoreVary = ignoreVary!;
return delegate;
}