static void copyToClipboard(String text, [String? message]) { FlutterClipboard.copy(text) .then((value) => print('Copied to clipboard: $text')); }