WebhookInfo constructor

WebhookInfo({
  1. required String url,
  2. required bool hasCustomCertificate,
  3. required int pendingUpdateCount,
  4. String? ipAddress,
  5. int? lastErrorDate,
  6. String? lastErrorMessage,
  7. int? lastSynchronizationErrorDate,
  8. int? maxConnections,
  9. List<String>? allowedUpdates,
})

Implementation

WebhookInfo({
  required this.url,
  required this.hasCustomCertificate,
  required this.pendingUpdateCount,
  this.ipAddress,
  this.lastErrorDate,
  this.lastErrorMessage,
  this.lastSynchronizationErrorDate,
  this.maxConnections,
  this.allowedUpdates,
});