removeGeofence static method

Future<bool> removeGeofence(
  1. String identifier
)

Removes a geofence by identifier.

Implementation

static Future<bool> removeGeofence(String identifier) async {
  final result =
      await LocusChannels.methods.invokeMethod('removeGeofence', identifier);
  return result == true;
}