SubscriptionOptions constructor

SubscriptionOptions({
  1. required String channel,
  2. required TransmitHttpClient httpClient,
  3. required TransmitStatus getEventSourceStatus(),
  4. Hook? hooks,
  5. void onDeleted(
    1. String channel
    )?,
})

Implementation

SubscriptionOptions({
  required this.channel,
  required this.httpClient,
  required this.getEventSourceStatus,
  this.hooks,
  this.onDeleted,
});