paste method
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();
}