removeRows method
Remove count rows starting at index.
Implementation
Future<void> removeRows(int index, {int count = 1}) async {
await VolvoxGridService.RemoveRows(RemoveRowsRequest()
..gridId = _gridId
..index = index
..count = count);
notifyListeners();
}