exportImageToClipboard method
Implementation
Future exportImageToClipboard(Image image, NamedMediaType mediaType) async {
final bytes = await _imageToByteData(image, mediaType);
return GraphViewExporterPlatform.instance.exportContentToClipboard(
bytes.buffer.asUint8List(), mediaType.mediaType);
}