pauseGeoFenceRegionsWithCustomID method

Future<List?> pauseGeoFenceRegionsWithCustomID(
  1. String customID
)

Implementation

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

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


  // handle native call


  return (__result__ as List?)?.cast<dynamic>();
}