Business constructor

Business({
  1. bool? businessCenter,
  2. String? businessCenterException,
  3. bool? meetingRooms,
  4. int? meetingRoomsCount,
  5. String? meetingRoomsCountException,
  6. String? meetingRoomsException,
})

Implementation

Business({
  this.businessCenter,
  this.businessCenterException,
  this.meetingRooms,
  this.meetingRoomsCount,
  this.meetingRoomsCountException,
  this.meetingRoomsException,
});