deleteSelection method
Delete current selection contents.
Implementation
Future<void> deleteSelection() async {
await VolvoxGridService.Clipboard(ClipboardCommand()
..gridId = _gridId
..delete = ClipboardDelete());
notifyListeners();
}
Delete current selection contents.
Future<void> deleteSelection() async {
await VolvoxGridService.Clipboard(ClipboardCommand()
..gridId = _gridId
..delete = ClipboardDelete());
notifyListeners();
}