whereType method

Stream<Action> whereType(
  1. String actionType
)

Implementation

Stream<Action> whereType(String actionType) =>
    _dispatcher.where((action) => action.type == actionType);