copyWithWrapped method
Implementation
ItemStatusLastWebhook copyWithWrapped(
{Wrapped<DateTime?>? sentAt, Wrapped<String?>? codeSent}) {
return ItemStatusLastWebhook(
sentAt: (sentAt != null ? sentAt.value : this.sentAt),
codeSent: (codeSent != null ? codeSent.value : this.codeSent));
}