dropFiles method

Future<void> dropFiles(
  1. 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);
      }
    });
  }
}