copyToClipBoard method
Implementation
Future<bool> copyToClipBoard() async {
if (this.textEmpty()) return true;
await FlutterClipboard.copy('$this').then((value) {
'复制成功'.toast();
}).catchError((err) {
print('copyToClipBoard:$err');
});
return true;
}