removeGeofences static method

Future<bool> removeGeofences()

Destroy all Geofence.

Implementation

static Future<bool> removeGeofences() async {
  return (await _methodChannel.invokeMethod<bool>('removeGeofences'))
      as FutureOr<bool>;
}