BusinessBotRecipients constructor

const BusinessBotRecipients({
  1. required bool existingChats,
  2. required bool newChats,
  3. required bool contacts,
  4. required bool nonContacts,
  5. required bool excludeSelected,
  6. List<int>? users,
  7. List<int>? excludeUsers,
})

Business Bot Recipients constructor.

Implementation

const BusinessBotRecipients({
  required this.existingChats,
  required this.newChats,
  required this.contacts,
  required this.nonContacts,
  required this.excludeSelected,
  this.users,
  this.excludeUsers,
}) : super._();