UpdateMessage constructor

UpdateMessage({
  1. required String id,
  2. String? text,
  3. List<FileInfo>? media,
  4. MessageArticle? article,
  5. FileInfo? audio,
  6. List<FileInfo>? attachment,
})

Implementation

UpdateMessage({
  required this.id,
  this.text,
  this.media,
  this.article,
  this.audio,
  this.attachment,
});