copyWith method

SuperBatchWebResources copyWith({
  1. SuperBatchWebResourcesUris? uris,
  2. SuperBatchWebResourcesTags? tags,
  3. String? metatags,
  4. Map<String, dynamic>? expandable,
})

Implementation

SuperBatchWebResources copyWith(
    {SuperBatchWebResourcesUris? uris,
    SuperBatchWebResourcesTags? tags,
    String? metatags,
    Map<String, dynamic>? expandable}) {
  return SuperBatchWebResources(
    uris: uris ?? this.uris,
    tags: tags ?? this.tags,
    metatags: metatags ?? this.metatags,
    expandable: expandable ?? this.expandable,
  );
}