signalr_netcore 1.3.8 signalr_netcore: ^1.3.8 copied to clipboard
A flutter client for ASP.NET Core SignalR. The client is able to invoke server side hub functions and to receive method invocations issued by the server.
import 'app.dart';
import 'package:flutter/material.dart';
const kChatServerUrl = "http://localhost:5000";
void main() {
runApp(App());
}