removeGeofences static method

Future<bool> removeGeofences()

Removes all geofences.

Implementation

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