update method

void update(
  1. List<Map<String, dynamic>> _items
)

A convenience method to update the bloc items if needed by adding to the sink

Implementation

void update(List<Map<String, dynamic>> _items) {
  _itemController.sink.add(_items);
}