copyWith method
StopBusinessPoll
copyWith({
- String? businessConnectionId,
- int? chatId,
- int? messageId,
- ReplyMarkup? replyMarkup,
Implementation
StopBusinessPoll copyWith({
String? businessConnectionId,
int? chatId,
int? messageId,
ReplyMarkup? replyMarkup,
}) => StopBusinessPoll(
businessConnectionId: businessConnectionId ?? this.businessConnectionId,
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
replyMarkup: replyMarkup ?? this.replyMarkup,
);