geofenceExists static method

Future<bool> geofenceExists(
  1. String identifier
)

Checks if a geofence exists.

Implementation

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