filterPoisBy method

Future<void> filterPoisBy(
  1. List<String> categoryIdsFilter
)

Implementation

Future<void> filterPoisBy(List<String> categoryIdsFilter) async {
  log("Dart filterPoisBy called, methodChannel will be invoked.");
  return await methodChannel.invokeMethod<void>('filterPoisBy',
      <String, List<String>>{'categoryIdsFilter': categoryIdsFilter});
}