cut method
Implementation
Future<void> cut() async {
if (hasSelection) {
await Clipboard.setData(selection!.textInRange(_text));
deleteSelection();
}
}
Future<void> cut() async {
if (hasSelection) {
await Clipboard.setData(selection!.textInRange(_text));
deleteSelection();
}
}