VideoChatScheduled.fromJson constructor

VideoChatScheduled.fromJson(
  1. Map<String, dynamic> json
)

Creates a VideoChatScheduled object from JSON object

Implementation

factory VideoChatScheduled.fromJson(Map<String, dynamic> json) {
  return VideoChatScheduled(
    startDate: json['start_date']!,
  );
}