MmCommandResponse constructor

MmCommandResponse({
  1. String? responseType,
  2. String? text,
  3. String? username,
  4. String? iconURL,
  5. String? gotoLocation,
  6. List<MmSlackAttachment> attachments = const [],
})

Returns a new MmCommandResponse instance.

Implementation

MmCommandResponse({
  this.responseType,
  this.text,
  this.username,
  this.iconURL,
  this.gotoLocation,
  this.attachments = const [],
});