refactor(llc, ui): migrate enums to v3

Signed-off-by: xsahil03x <[email protected]>
This commit is contained in:
Sahil Kumar
2022-05-20 14:18:30 +05:30
committed by xsahil03x
parent 715f70a246
commit 0213fa6f1f
12 changed files with 66 additions and 108 deletions
@@ -163,7 +163,7 @@ class WebSocket with TimerHelper {
'json': jsonEncode(params),
'api_key': apiKey,
'authorization': token.rawValue,
'stream-auth-type': token.authType.raw,
'stream-auth-type': token.authType.name,
...queryParameters,
};
final scheme = baseUrl.startsWith('https') ? 'wss' : 'ws';