SendMessage constructor

SendMessage({
  1. required String type,
  2. String? content,
  3. dynamic replyContent,
  4. dynamic compositeContent,
  5. Info? info,
  6. String? reference,
})

Implementation

SendMessage({
  required this.type,
  this.content,
  this.replyContent,
  this.compositeContent,
  this.info,
  this.reference,
});