stopTracking method

Future stopTracking ()

Implementation

static Future stopTracking() async {
  try {
    await _channel.invokeMethod('stopTracking');
  } on PlatformException catch (e) {
    print("Got error: $e");
  }
}