MessageSendOptions constructor

const MessageSendOptions({
  1. required bool disableNotification,
  2. required bool fromBackground,
  3. required bool protectContent,
  4. required bool updateOrderOfInstalledStickerSets,
  5. MessageSchedulingState? schedulingState,
  6. required int sendingId,
})

Options to be used when a message is sent

Implementation

const MessageSendOptions({
  required this.disableNotification,
  required this.fromBackground,
  required this.protectContent,
  required this.updateOrderOfInstalledStickerSets,
  this.schedulingState,
  required this.sendingId,
});