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