MmCreateIncomingWebhookRequest constructor

MmCreateIncomingWebhookRequest({
  1. required String channelId,
  2. String? userId,
  3. String? displayName,
  4. String? description,
  5. String? username,
  6. String? iconUrl,
})

Returns a new MmCreateIncomingWebhookRequest instance.

Implementation

MmCreateIncomingWebhookRequest({
  required this.channelId,
  this.userId,
  this.displayName,
  this.description,
  this.username,
  this.iconUrl,
});