dropFiles method
- PerformDropEvent event
Adds the specified event
files to the attachments.
Implementation
Future<void> dropFiles(PerformDropEvent event) async {
for (final DropItem item in event.session.items) {
final PlatformFile? file = await item.dataReader?.asPlatformFile();
if (file != null) {
send.addPlatformAttachment(file);
}
}
}