How to filter a list of obseravble in rxdart
问题 I am trying to implement bloc pattern in rxdart . I am trying to build todo app type of app . I implemented showing all items in list but what I want is not to show completed and uncompleted items in different part . However I am not able to filter the items based on completed on rxdart . import 'package:rxdart/rxdart.dart'; import '../models/ShoppingItem.dart'; class ShoppingItemBloc { final _shoppingItems = BehaviorSubject<List<ShoppingItem>> (seedValue: []); Observable<List<ShoppingItem>>