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