resizeViewport method
Notify the native grid that the viewport size changed.
Implementation
Future<void> resizeViewport(int width, int height) async {
await VolvoxGridService.ResizeViewport(ResizeViewportRequest()
..gridId = _gridId
..width = width
..height = height);
notifyListeners();
}