Let Two Stream deliver two different types of data. I want a one stream from those two stream that combine the data and wrap in data class and delivers it.
Example:
Stream<String> stream1;
Stream<String> stream2;
class Data{
String s1;
String s2;
Data(this.s1,this.s2);
}