isTrackedPositions property
Check if tracked position is started in the map view
Returns
- True if tracking is enabled, false otherwise.
Implementation
bool get isTrackedPositions {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewExtensions',
'isTrackedPositions',
dependencyId: _mapControllerId,
);
return resultString['result'] as bool;
}