copyWith method
Implementation
FailedWebhook copyWith(
    {String? body, int? failureTime, String? id, String? url}) {
  return FailedWebhook(
    body: body ?? this.body,
    failureTime: failureTime ?? this.failureTime,
    id: id ?? this.id,
    url: url ?? this.url,
  );
}