copy method
Implementation
Future<void> copy() {
/// Copy the value to the clipboard.
return Clipboard.setData(ClipboardData(text: this.toString()));
}
Future<void> copy() {
/// Copy the value to the clipboard.
return Clipboard.setData(ClipboardData(text: this.toString()));
}