Is there any way to get multiple files on the view and send multiple files in same message with title and attribute. I have tried
final messageOptions = MessageOptions() ..withMedia(File(files[0].path), mime(files[0].path) ?? "") ..withMedia(File(files[1].path), mime(files[1].path) ?? "") ..withMedia(File(files[2].path), mime(files[2].path) ?? "") ..withAttributes({ "title": titleController.text, "body": descriptionController.text });