write method
Writes the content of the items to the clipboard.
Implementation
@override
Future<void> write(Iterable<DataWriterItem> items) async {
await items.withHandles((handles) async {
await raw.ClipboardWriter.instance.write(handles);
});
}