copy method
Implementation
@override
Future<void> copy(String text, {Duration? autoClearAfter, bool localOnly = false}) async {
await _methodChannel.invokeMethod('copy', {
'text': text,
'autoClearAfter': autoClearAfter?.inMilliseconds,
'localOnly': localOnly,
});
}