isCameraMoving property
Check if view camera is moving.
Returns
- True if camera is moving, false otherwise.
Implementation
bool get isCameraMoving {
final OperationResult resultString = objectMethod(
_pointerId,
'MapView',
'isCameraMoving',
);
return resultString['result'];
}