WorkingHourModel constructor

WorkingHourModel(
  1. {int? id,
  2. int? businessId,
  3. List<String>? days,
  4. List<String>? startAt,
  5. List<String>? endAt,
  6. List<bool>? status}
)

Implementation

WorkingHourModel({
  this.id,
  this.businessId,
  this.days,
  this.startAt,
  this.endAt,
  this.status,
});