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