ServiceWebhookServer constructor

ServiceWebhookServer({
  1. required Portable factory(),
  2. required String? path,
  3. required String? webhookSecret,
  4. required bool supportsWebSockets,
})

Implementation

ServiceWebhookServer({
  required this.factory,
  required super.path,
  required super.webhookSecret,
  required super.supportsWebSockets,
  // You might have other params in your WebhookServer base class.
}) : super(
       // Pass whatever base arguments are needed here.
     );