ReplyParameters constructor

const ReplyParameters({
  1. required int messageId,
  2. ID? chatId,
  3. bool? allowSendingWithoutReply,
  4. String? quote,
  5. String? quoteParseMode,
  6. List<MessageEntity>? quoteEntities,
  7. int? quotePosition,
})

Constructs a ReplyParameters.

Implementation

const ReplyParameters({
  required this.messageId,
  this.chatId,
  this.allowSendingWithoutReply,
  this.quote,
  this.quoteParseMode,
  this.quoteEntities,
  this.quotePosition,
});