VideoCallAcceptedEvent.fromJson constructor Null safety
- dynamic json
Implementation
VideoCallAcceptedEvent.fromJson(dynamic json) {
videocall = json['videocall'];
result = json['result'] != null ? Result.fromJson(json['result']) : null;
}
VideoCallAcceptedEvent.fromJson(dynamic json) {
videocall = json['videocall'];
result = json['result'] != null ? Result.fromJson(json['result']) : null;
}