You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make the ApiClient class generic, with a single type parameter that matches the type of data received from that API's Stream. For example, to receive List<Event> data, we would use ApiClient<List<Event>> that has a Stream<List<Event>> stream attribute.