Skip to content

Commit 8877523

Browse files
authored
[FVS-88] unable to join a call (#506)
1 parent 10ca2f1 commit 8877523

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/stream_video/lib/open_api/video/coordinator/model/user_response.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class UserResponse {
2727
/// Date/time of creation
2828
DateTime createdAt;
2929

30-
Map<String, Object> custom;
30+
Map<String, Object?> custom;
3131

3232
/// Date/time of deletion
3333
///
@@ -137,7 +137,7 @@ class UserResponse {
137137

138138
return UserResponse(
139139
createdAt: mapDateTime(json, r'created_at', '')!,
140-
custom: mapCastOfType<String, Object>(json, r'custom')!,
140+
custom: mapCastOfType<String, Object?>(json, r'custom')!,
141141
deletedAt: mapDateTime(json, r'deleted_at', ''),
142142
id: mapValueOfType<String>(json, r'id')!,
143143
image: mapValueOfType<String>(json, r'image'),

packages/stream_video/lib/src/models/call_metadata.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ class CallMember with EquatableMixin {
103103

104104
final String userId;
105105
final String role;
106-
final Map<String, Object>? custom;
106+
final Map<String, Object?> custom;
107107
final DateTime? createdAt;
108108
final DateTime? updatedAt;
109109
final DateTime? deletedAt;

packages/stream_video/lib/src/models/guest_created_data.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class UserResponseData with EquatableMixin {
5858
/// Date/time of creation
5959
final DateTime createdAt;
6060

61-
final Map<String, Object> custom;
61+
final Map<String, Object?> custom;
6262

6363
/// Date/time of deletion
6464
///

0 commit comments

Comments
 (0)