copyWith method
SendMessage
copyWith({
- int? chatId,
- MessageTopic? topicId,
- InputMessageReplyTo? replyTo,
- MessageSendOptions? options,
- ReplyMarkup? replyMarkup,
- InputMessageContent? inputMessageContent,
Implementation
SendMessage copyWith({
int? chatId,
MessageTopic? topicId,
InputMessageReplyTo? replyTo,
MessageSendOptions? options,
ReplyMarkup? replyMarkup,
InputMessageContent? inputMessageContent,
}) => SendMessage(
chatId: chatId ?? this.chatId,
topicId: topicId ?? this.topicId,
replyTo: replyTo ?? this.replyTo,
options: options ?? this.options,
replyMarkup: replyMarkup ?? this.replyMarkup,
inputMessageContent: inputMessageContent ?? this.inputMessageContent,
);