stopTracking method

Future<bool> stopTracking()

Stop GPS tracking.

Implementation

Future<bool> stopTracking() async {
  try {
    final result = await _method.invokeMethod<bool>('stopTracking');
    return result ?? false;
  } on PlatformException {
    rethrow;
  }
}