copyWithWrapped method

ImageAvatar copyWithWrapped({
  1. Wrapped<String?>? type,
  2. Wrapped<String?>? url,
})

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));
}