disconnect method

  1. @override
Future<bool?> disconnect({
  1. int code = 1000,
  2. String reason = 'Client done.',
})
override

Initialize ws connection close by client. When connection is successfully closed, onWsClosed will be invoked.

Implementation

@override
Future<bool?> disconnect({
  int code = 1000,
  String reason = 'Client done.',
}) async {
  return await WebSocketSupportPlatform.instance.disconnect(
    code: code,
    reason: reason,
  );
}