In the earlier post, we addressed how to create a simple Grpc server in C# and consume it using a client developed using Flutter/Dart. We will now take the next step and address how to create expose a streaming remote method in the server and consume the same in the client. Streaming method in Server (C#) … Continue reading Process Stream data from gRPC Server using Flutter/Dart
Month: August 2022
Create a Flutter gRPC client
In this post, we will address how to create a gRPC client in Flutter and connect to a Server. In order to test our client application, we will quickly build a gRPC service using .Net. gRPC Server (C# .Net) Let us use the Asp.Net core gRPC Service template provided by Visual Studio. With the basic … Continue reading Create a Flutter gRPC client