copyWithWrapped method
Implementation
ImageAvatar copyWithWrapped({Wrapped<String?>? type, Wrapped<String?>? url}) {
return ImageAvatar(
type: (type != null ? type.value : this.type),
url: (url != null ? url.value : this.url));
}
ImageAvatar copyWithWrapped({Wrapped<String?>? type, Wrapped<String?>? url}) {
return ImageAvatar(
type: (type != null ? type.value : this.type),
url: (url != null ? url.value : this.url));
}