BusinessInfo constructor

BusinessInfo({
  1. BusinessLocation? location,
  2. BusinessOpeningHours? openingHours,
  3. BusinessOpeningHours? localOpeningHours,
  4. required int nextOpenIn,
  5. required int nextCloseIn,
  6. BusinessGreetingMessageSettings? greetingMessageSettings,
  7. BusinessAwayMessageSettings? awayMessageSettings,
  8. BusinessStartPage? startPage,
})

Implementation

BusinessInfo({
  this.location,
  this.openingHours,
  this.localOpeningHours,
  required this.nextOpenIn,
  required this.nextCloseIn,
  this.greetingMessageSettings,
  this.awayMessageSettings,
  this.startPage,
});