copyWithWrapped method
Implementation
Search copyWithWrapped(
{Wrapped<String>? text, Wrapped<int?>? page, Wrapped<int?>? size}) {
return Search(
text: (text != null ? text.value : this.text),
page: (page != null ? page.value : this.page),
size: (size != null ? size.value : this.size));
}