close method - WebSocket class - dart:io library (original) (raw)
close abstract method
Future close([
override
Closes the WebSocket connection. Set the optional code
and reason
arguments to send close information to the remote peer. If they are omitted, the peer will see WebSocketStatus.noStatusReceived code with no reason.
Implementation
Future close([int? code, String? reason]);