GetSocket constructor

GetSocket(
  1. String url,
  2. {Duration ping = const Duration(seconds: 5),
  3. bool allowSelfSigned = true}
)

Implementation

GetSocket(String url,
    {Duration ping = const Duration(seconds: 5), bool allowSelfSigned = true})
    : super(url, ping: ping, allowSelfSigned: allowSelfSigned);