Facility constructor

Facility({
  1. required String name,
  2. required String type,
  3. required String roomNumber,
  4. required String contact,
  5. required String hours,
  6. required String imageUrl,
  7. bool isBookmarked = false,
})

Implementation

Facility({
  required this.name,
  required this.type,
  required this.roomNumber,
  required this.contact,
  required this.hours,
  required this.imageUrl,
  this.isBookmarked = false,
});