setEndPointRealtime method
Set the Appwrite realtime endpoint.
Implementation
@override
ClientBrowser setEndPointRealtime(String endPoint) {
if (!endPoint.startsWith('ws://') && !endPoint.startsWith('wss://')) {
throw AppwriteException('Invalid realtime endpoint URL: $endPoint');
}
_endPointRealtime = endPoint;
return this;
}