copyWith method
SuperBatchWebResources
copyWith({
- SuperBatchWebResourcesUris? uris,
- SuperBatchWebResourcesTags? tags,
- String? metatags,
- 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,
);
}