attachFile method

FileAttachment attachFile(
  1. String path
)

Implementation

FileAttachment attachFile(String path) {
  final attachment = FileAttachment(path: path, initialStatus: UploadStatus.completed);
  attachment.addListener(notifyListeners);
  _attachmentUploads.add(attachment);
  notifyListeners();
  return attachment;
}