removeAllGeoFence method

Future<void> removeAllGeoFence()

删除所有围栏

Implementation

Future<void> removeAllGeoFence() async {
  return platform(
    android: (pool) async {
      await _androidGeoFenceClient?.removeGeoFence();
    },
    ios: (pool) async {
      await _iosGeoFenceClient?.removeAllGeoFenceRegions();
    },
  );
}