How to convert Stream<T> to Stream<E> in dart

Viewed 1183

I have one Stream of type T. I want to convert into some other type like Stream of E. Can someone tell me how can i achieve it?

1 Answers
Related