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