Flutter - How does MultiProvider work with providers of the same type?
问题 For example, I am trying to obtain data emitted for multiple streams at once, but 2 or more of these streams emit data of the same type, lets say a string. My question is, is it possible to use MultiProvider and use multiple StreamProvider (or any provider, but I am interested in this case) of the same type while still being able to access the data emitted by each one of them? A solution for this is using a StreamBuilder when using common data types but I really like what the MultiProvider