copyWithWrapped method

ItemStatusLastWebhook copyWithWrapped({
  1. Wrapped<DateTime?>? sentAt,
  2. Wrapped<String?>? codeSent,
})

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