copyWith method

ItemStatus$LastWebhook copyWith({
  1. String? sentAt,
  2. String? codeSent,
})

Implementation

ItemStatus$LastWebhook copyWith({String? sentAt, String? codeSent}) {
  return ItemStatus$LastWebhook(
      sentAt: sentAt ?? this.sentAt, codeSent: codeSent ?? this.codeSent);
}