MmUpdateOutgoingWebhookRequest constructor

MmUpdateOutgoingWebhookRequest({
  1. String? hookId,
  2. required String channelId,
  3. required String displayName,
  4. required String description,
})

Returns a new MmUpdateOutgoingWebhookRequest instance.

Implementation

MmUpdateOutgoingWebhookRequest({
  this.hookId,
  required this.channelId,
  required this.displayName,
  required this.description,
});