FileAttachment constructor

FileAttachment({
  1. required String filename,
  2. required String content,
  3. bool truncated = false,
  4. required String displayPath,
})

Implementation

FileAttachment({
  required this.filename,
  required this.content,
  this.truncated = false,
  required this.displayPath,
});