RoomMessageAttachment constructor

RoomMessageAttachment({
  1. String? displayName,
  2. String? extension,
  3. String? md5,
  4. required String url,
  5. required int size,
  6. String? thumbPath,
  7. String? path,
  8. int? width,
  9. int? height,
})

Implementation

RoomMessageAttachment({
  this.displayName,
  this.extension,
  this.md5,
  required this.url,
  required this.size,
  this.thumbPath,
  this.path,
  this.width,
  this.height,
});