anirudhsharma392
Results
3
issues of
anirudhsharma392
I am using a subscription widget and how can I make sure that connection is established with the server and I can call it in the subscription widget. here is...
link
``` Widget build(BuildContext context) { return Scaffold( appBar: AppBar(), body: GraphQLProvider( client: client, child: Subscription(operationName, subscription, builder: ({ bool loading, dynamic payload, dynamic error, }) { if (loading==true) { return...
link