stopGeofenceMonitoring method

  1. @override
void stopGeofenceMonitoring(
  1. String appId
)

Stops Geofence Monitoring appId - MoEngage App ID

Implementation

@override
void stopGeofenceMonitoring(String appId) {
  try {
    _channel.invokeMethod(
      methodStopGeofenceMonitoring,
      getAccountMeta(appId),
    );
  } catch (e) {
    Logger.e('$_tag Error: stopGeofenceMonitoring() : $e');
  }
}