dropFiles method

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