DirectMessage constructor

DirectMessage({
  1. int? fromUser,
  2. int? group,
  3. List? mentions,
  4. String? deltaContent,
  5. String? htmlContent,
  6. String? textContent,
  7. dynamic replyTo,
  8. bool? isBase64Encoded,
})

Implementation

DirectMessage ({
  this.fromUser,
  this.group,
  this.mentions,
  this.deltaContent,
  this.htmlContent,
  this.textContent,
  this.replyTo,
  this.isBase64Encoded,
});