VideoChatEnded.fromJson constructor
Creates a VideoChatEnded object from JSON object
Implementation
factory VideoChatEnded.fromJson(Map<String, dynamic> json) {
return VideoChatEnded(
duration: json['duration'],
);
}
Creates a VideoChatEnded object from JSON object
factory VideoChatEnded.fromJson(Map<String, dynamic> json) {
return VideoChatEnded(
duration: json['duration'],
);
}