Future<void> copyOnClipboard(String text) async { toast('Copied to clipboard:- $text'); await Clipboard.setData( ClipboardData( text: text, ), ); }