deleteSelection method

Future<void> deleteSelection()

Delete current selection contents.

Implementation

Future<void> deleteSelection() async {
  await VolvoxGridService.Clipboard(ClipboardCommand()
    ..gridId = _gridId
    ..delete = ClipboardDelete());
  notifyListeners();
}