isFollowingPosition property
Returns true if the camera is following the current real/simulated position and false otherwise.
Returns
- True if the map is currently following the current position.
Throws
- An exception if it fails.
Implementation
bool get isFollowingPosition {
final OperationResult resultString = objectMethod(
_pointerId,
'MapView',
'isFollowingPosition',
);
return resultString['result'];
}