BookingLogs.fromJson constructor

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

Implementation

BookingLogs.fromJson(Map<String, dynamic> json) {
  id = json['id'];
  status = json['status'];
  comment = json['comment'];
  agentId = json['agentId'];
  subscriberId = json['subscriberId'];
  bookingId = json['bookingId'];
  createdAt = json['createdAt'];
  updatedAt = json['updatedAt'];
}