startLiveLocation method

Future<void> startLiveLocation({
  1. String provider = 'best',
  2. int intervalMs = 2000,
  3. double distanceMeters = 0,
})

Starts continuous location updates on the native side. Emits results via the liveLocation method channel callback.

Implementation

Future<void> startLiveLocation({
  String provider = 'best',
  int intervalMs = 2000,
  double distanceMeters = 0,
}) => throw UnimplementedError('startLiveLocation() has not been implemented.');