EditMessageSchedulingState constructor

const EditMessageSchedulingState({
  1. required int chatId,
  2. required int messageId,
  3. MessageSchedulingState? schedulingState,
})

Edits the time when a scheduled message will be sent. Scheduling state of all messages in the same album or forwarded together with the message will be also changed

Implementation

const EditMessageSchedulingState({
  required this.chatId,
  required this.messageId,
  this.schedulingState,
});