copyWith method

AddPollOption copyWith({
  1. int? chatId,
  2. int? messageId,
  3. InputPollOption? option,
})

Implementation

AddPollOption copyWith({
  int? chatId,
  int? messageId,
  InputPollOption? option,
}) => AddPollOption(
  chatId: chatId ?? this.chatId,
  messageId: messageId ?? this.messageId,
  option: option ?? this.option,
);