getClipboardData method
get clipboard data from the clipboard asynchronously.
Returns:
Implementation
@override
Future<Map<String, String>?> getClipboardData() async {
final Map<String, String>? text =
await methodChannel.invokeMapMethod<String, String>('getClipboardData');
return text;
}