first commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import 'src/sockets_stub.dart'
|
||||
if (dart.library.html) 'src/sockets_html.dart'
|
||||
if (dart.library.io) 'src/sockets_io.dart';
|
||||
|
||||
class GetSocket extends BaseWebSocket {
|
||||
GetSocket(String url,
|
||||
{Duration ping = const Duration(seconds: 5), bool allowSelfSigned = true})
|
||||
: super(url, ping: ping, allowSelfSigned: allowSelfSigned);
|
||||
}
|
||||
Reference in New Issue
Block a user