UpdateMessageSendAcknowledged constructor

const UpdateMessageSendAcknowledged({
  1. required int chatId,
  2. required int messageId,
  3. dynamic extra,
  4. int? clientId,
})

A request to send a message has reached the Telegram server. This doesn't mean that the message will be sent successfully or even that the send message request will be processed.. This update will be sent only if the option "use_quick_ack" is set to true. This update may be sent multiple times for the same message

Implementation

const UpdateMessageSendAcknowledged({
  required this.chatId,
  required this.messageId,
  this.extra,
  this.clientId,
});