File tree Expand file tree Collapse file tree 2 files changed +1
-16
lines changed
packages/realtime_client/lib/src Expand file tree Collapse file tree 2 files changed +1
-16
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ class RealtimeClient {
51
51
String ? accessToken;
52
52
List <RealtimeChannel > channels = [];
53
53
final String endPoint;
54
- final String httpEndpoint;
54
+
55
55
final Map <String , String > headers;
56
56
final Map <String , dynamic > params;
57
57
final Duration timeout;
@@ -117,7 +117,6 @@ class RealtimeClient {
117
117
logLevel == null ? null : {'log_level' : logLevel.name},
118
118
)
119
119
.toString (),
120
- httpEndpoint = httpEndpointURL (endPoint),
121
120
headers = {
122
121
...Constants .defaultHeaders,
123
122
if (headers != null ) ...headers,
Original file line number Diff line number Diff line change @@ -408,17 +408,3 @@ class SinglePresenceState {
408
408
@override
409
409
String toString () => 'PresenceState(key: $key , presences: $presences )' ;
410
410
}
411
-
412
- class Channel {
413
- final String name;
414
- final String inserted_at;
415
- final String updated_at;
416
- final int id;
417
-
418
- Channel ({
419
- required this .name,
420
- required this .inserted_at,
421
- required this .updated_at,
422
- required this .id,
423
- });
424
- }
You can’t perform that action at this time.
0 commit comments