ChannelResponse constructor

const ChannelResponse({
  1. required ConversationKey conversation,
  2. required String type,
  3. String? text,
  4. List<Map<String, dynamic>>? blocks,
  5. List<ChannelAttachment>? attachments,
  6. String? replyTo,
  7. Map<String, dynamic>? options,
})

Implementation

const ChannelResponse({
  required this.conversation,
  required this.type,
  this.text,
  this.blocks,
  this.attachments,
  this.replyTo,
  this.options,
});