fromJson static method

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

Creates a object from a json

Implementation

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