SimulatedLocationDataSource constructor

SimulatedLocationDataSource()

Creates a simulated location data source.

Implementation

factory SimulatedLocationDataSource() {
  _initializeArcGISEnvironmentIfNeeded();
  final handle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_SimulatedLocationDataSource_create(errorHandler);
  });
  return LocationDataSource._instanceCache.instanceWith(handle);
}