copyWith method

WebResourceDependenciesTags copyWith({
  1. String? all,
  2. String? css,
  3. String? data,
  4. String? js,
  5. Map<String, dynamic>? expandable,
})

Implementation

WebResourceDependenciesTags copyWith(
    {String? all,
    String? css,
    String? data,
    String? js,
    Map<String, dynamic>? expandable}) {
  return WebResourceDependenciesTags(
    all: all ?? this.all,
    css: css ?? this.css,
    data: data ?? this.data,
    js: js ?? this.js,
    expandable: expandable ?? this.expandable,
  );
}