paste method

Future<void> paste(
  1. String text
)

Paste provided clipboard text into current selection.

Implementation

Future<void> paste(String text) async {
  await VolvoxGridService.Clipboard(ClipboardCommand()
    ..gridId = _gridId
    ..paste = (ClipboardPaste()..text = text));
  notifyListeners();
}