startLocation method

Future<int> startLocation()

开始定位

Implementation

Future<int> startLocation() async{
  int ret = await _methodChannel.invokeMethod('startLocation', {'pluginKey': _pluginKey});
  return ret;
}