delegate property

MultiCacheQueryOptions get delegate

Implementation

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