sync static method

Future<bool> sync()

Triggers an immediate sync of pending locations.

Implementation

static Future<bool> sync() async {
  final result = await _methodChannel.invokeMethod('sync');
  return result == true;
}