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
publicasyncTaskUploadStream(ChannelReader<string>stream){while(awaitstream.WaitToReadAsync()){while(stream.TryRead(outvaritem)){// do something with the stream itemConsole.WriteLine(item);}}}
this is my code on dart:
final controller = StreamController<String>();
_hubConnection?.stream("UploadStream", [controller.stream]);
but not work. how to use client to server streaming in flutter.
The text was updated successfully, but these errors were encountered:
this is my code on server written by C#:
this is my code on dart:
but not work. how to use client to server streaming in flutter.
The text was updated successfully, but these errors were encountered: