Hello, This plugin works fine for web, but on Android (13), this code
await RichClipboard.setData(RichClipboardData(
html: html,
));
gives the following error :
E/MethodChannel#com.bringingfire.rich_clipboard( 9747): java.lang.IllegalArgumentException: Plain text must be supplied if HTML text is supplied
it the code is altered to be
await RichClipboard.setData(RichClipboardData(
text: html,
html: html,
));
Only text is copied in the clipboard...