new change to use intaleq_map sdk 04-16-4
This commit is contained in:
9
packages/get/lib/get_connect/sockets/sockets.dart
Normal file
9
packages/get/lib/get_connect/sockets/sockets.dart
Normal file
@@ -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