currentFilterType property

Stream<FilterType> currentFilterType

Stream FilterType the current filtering of the document

Implementation

Stream<FilterType> get currentFilterType {
  return _appBloc.stream.transform(
    StreamTransformer.fromHandlers(
      handleData: (data, sink) => sink.add(data.currentFilterType),
    ),
  );
}