copyText method
- String text
Puts a text
into the clipboard and shows a snackbar.
Implementation
void copyText(String text) {
PlatformUtils.copy(text: text);
MessagePopup.success('label_copied'.l10n, bottom: 76);
}
Puts a text
into the clipboard and shows a snackbar.
void copyText(String text) {
PlatformUtils.copy(text: text);
MessagePopup.success('label_copied'.l10n, bottom: 76);
}