copyText method
Implementation
void copyText(String text) {
try {
Clipboard.setData(ClipboardData(text: text));
} catch (e) {
debugPrint('copyText: ${e.toString()}');
}
}
void copyText(String text) {
try {
Clipboard.setData(ClipboardData(text: text));
} catch (e) {
debugPrint('copyText: ${e.toString()}');
}
}