copyWith method

SuperBatchWebResourcesTags copyWith({
  1. String? all,
  2. String? css,
  3. String? data,
  4. String? js,
})

Implementation

SuperBatchWebResourcesTags copyWith(
    {String? all, String? css, String? data, String? js}) {
  return SuperBatchWebResourcesTags(
    all: all ?? this.all,
    css: css ?? this.css,
    data: data ?? this.data,
    js: js ?? this.js,
  );
}