We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26fc167 commit a5cef53Copy full SHA for a5cef53
lib/src/call_update.dart
@@ -65,11 +65,11 @@ class FCXCallUpdate {
65
FCXCallUpdate({
66
this.remoteHandle,
67
this.localizedCallerName,
68
- required this.supportsHolding,
69
- required this.supportsGrouping,
70
- required this.supportsUngrouping,
71
- required this.supportsDTMF,
72
- required this.hasVideo,
+ this.supportsHolding = false,
+ this.supportsGrouping = false,
+ this.supportsUngrouping = false,
+ this.supportsDTMF = false,
+ this.hasVideo = false,
73
});
74
75
Map<String, dynamic> _toMap() => {
0 commit comments