isA<T> method

Stream<T> isA<T>()

Implementation

Stream<T> isA<T>() => _dispatcher
    .where((action) => action is T)
    .map<T>((action) => action as T);