drawStatus property
The current drawing status of the content displayed in the GeoViewController.
New content is drawn every time a user pans or zooms the view, or the app programmatically changes its visible area. There is a short delay before this drawing phase completes. You can use GeoViewController.drawStatus to detect whether this drawing phase is in progress or has completed. For example, you may want to take a screen capture of a view's visible area (GeoViewController.exportImage) when drawing is completed.
Implementation
DrawStatus get drawStatus {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GeoView_getDrawStatus(_handle, errorHandler);
});
return DrawStatus._fromCoreValue(coreValue);
}