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