removeGeofence static method

Future<void> removeGeofence(
  1. String geofenceId
)

Remove a geofence by ID

Implementation

static Future<void> removeGeofence(String geofenceId) {
  return BackgroundTrackerPlatform.instance.removeGeofence(geofenceId);
}