resolvedRealtimeUrl property

String get resolvedRealtimeUrl

Gets the resolved realtime service URL

Implementation

String get resolvedRealtimeUrl =>
    realtimeServiceUrl ??
    baseUrl
        .replaceFirst('http://', 'ws://')
        .replaceFirst('https://', 'wss://')
        .replaceFirst(':8080', ':8082');