MessageSendOptions constructor

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

Options to be used when a message is sent

Implementation

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