geofenceExists static method
- String identifier
Checks if a geofence exists.
Implementation
static Future<bool> geofenceExists(String identifier) async {
final result =
await _methodChannel.invokeMethod('geofenceExists', identifier);
return result == true;
}