copyWith method

ItemStatusLastWebhook copyWith({
  1. DateTime? sentAt,
  2. String? codeSent,
})

Implementation

ItemStatusLastWebhook copyWith({DateTime? sentAt, String? codeSent}) {
  return ItemStatusLastWebhook(
      sentAt: sentAt ?? this.sentAt, codeSent: codeSent ?? this.codeSent);
}