startLocationUpdates static method

Future<void> startLocationUpdates()

Starts location updates and retuns the result.

Implementation

static Future<void> startLocationUpdates() async {
  await _channel.invokeMethod('startLocationUpdates');
  return;
}