HandymanReview.fromJson constructor

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

Implementation

HandymanReview.fromJson(Map<String, dynamic> json) {
  id = json['id'];
  customerId = json['customer_id'];
  rating = json['rating'];
  review = json['review'];
  serviceId = json['service_id'];
  bookingId = json['booking_id'];
  handymanId = json['handyman_id'];
  handymanName = json['handyman_name'];
  handymanProfileImage = json['handyman_profile_image'];
  customerName = json['customer_name'];
  customerProfileImage = json['customer_profile_image'];
  createdAt = json['created_at'];
}