pasteText method
Paste text from Clipboard.
Implementation
@override
Future<void> pasteText(SelectionChangedCause cause) async {
if (controller.readOnly) {
return;
}
if (await controller.clipboardPaste()) {
bringIntoView(textEditingValue.selection.extent);
return;
}
}