copyWith method

Implementation

WebResourceDependencies copyWith(
    {WebResourceDependenciesExpandable? expandable,
    List<String>? keys,
    List<String>? contexts,
    WebResourceDependenciesUris? uris,
    WebResourceDependenciesTags? tags,
    SuperBatchWebResources? superbatch}) {
  return WebResourceDependencies(
    expandable: expandable ?? this.expandable,
    keys: keys ?? this.keys,
    contexts: contexts ?? this.contexts,
    uris: uris ?? this.uris,
    tags: tags ?? this.tags,
    superbatch: superbatch ?? this.superbatch,
  );
}