removeGeoFenceRegionsWithCustomID method

Future<void> removeGeoFenceRegionsWithCustomID(
  1. String customID
)

Implementation

Future<void> removeGeoFenceRegionsWithCustomID(String customID) async {
  // print log
  if (fluttifyLogEnabled) {
    debugPrint('fluttify-dart: AMapGeoFenceManager@$refId::removeGeoFenceRegionsWithCustomID([\'customID\':$customID])');
  }

  // invoke native method
  final __result__ = await kAmapLocationFluttifyChannel.invokeMethod('AMapGeoFenceManager::removeGeoFenceRegionsWithCustomID', {"customID": customID, "__this__": this});


  // handle native call


  return __result__;
}