sockets_stub.dart 294 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 class BaseWebSocket { String url; Duration ping; BaseWebSocket(this.url, {this.ping = const Duration(seconds: 5)}) { throw 'To use sockets you need dart:io or dart:html'; } void close([int status, String reason]) { throw 'To use sockets you need dart:io or dart:html'; } }