paste method
Implementation
Future<void> paste() async {
final clipboardText = await Clipboard.getData();
if (clipboardText != null && clipboardText.isNotEmpty) {
if (hasSelection) {
deleteSelection();
}
insertText(clipboardText);
}
}