stopTrackPositions method
Stops the sense data source improved position tracking on map
Returns
- GemError.success on success.
- GemError.notFound if tracking is not started.
Implementation
GemError stopTrackPositions() {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewExtensions',
'stopTrackPositions',
dependencyId: _mapControllerId,
);
return GemErrorExtension.fromCode(resultString['result']);
}