copyWithWrapped method

EntityScreeningHitUrls copyWithWrapped({
  1. Wrapped<String>? url,
})

Implementation

EntityScreeningHitUrls copyWithWrapped({Wrapped<String>? url}) {
  return EntityScreeningHitUrls(url: (url != null ? url.value : this.url));
}