stopLocation method

void stopLocation()

Implementation

void stopLocation() {
  const method = '/stopLocation';
  try {
    _channel.invokeMethod(method);
  } on PlatformException catch (e) {
    if(kDebugMode) print(e);
  }
}