removeGeofence method
Removes a previously registered geofence by its ID.
Implementation
@override
Future<bool> removeGeofence(String id) async {
final result = await methodChannel.invokeMethod<bool>(
'removeGeofence',
{'id': id},
);
return result ?? false;
}