VideoCallModel.fromJson constructor

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

Implementation

VideoCallModel.fromJson(Map<String, dynamic> json) {
  timeStart = json['timeStart'];
  id = json['id'];
  realStart = json['realStart'];
  realStop = json['realStop'];
  proUniqueId = json['proUniqueId'];
  price = json['price'];
  acceptBookBeforePay = json['acceptBookBeforePay'];
  shopPicture = json['shopPicture'];
  currency = json['currency'];
}