removeGeofenceWithId method

void removeGeofenceWithId(
  1. String customId
)

Implementation

void removeGeofenceWithId(String customId) async {
  if (Platform.isIOS) {
    return BMFLocationDispatcherFactory.instance.geofenceDispatcher
        .removeGeofenceCustomId(_channel, customId);
  } else {
    print('removeGeofenceWithId:暂不支持Android');
  }
}