address property

String? get address
inherited

Implementation

String? get address =>
    _client != null && _client!.readyState == WebSocket.open
        ? _address
        : null;