BookingLogs constructor

BookingLogs({
  1. String? id,
  2. String? status,
  3. String? comment,
  4. String? agentId,
  5. String? subscriberId,
  6. String? bookingId,
  7. String? createdAt,
  8. String? updatedAt,
})

Implementation

BookingLogs(
    {this.id,
    this.status,
    this.comment,
    this.agentId,
    this.subscriberId,
    this.bookingId,
    this.createdAt,
    this.updatedAt});