InputBusinessBotRecipients constructor

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

Input Business Bot Recipients constructor.

Implementation

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