copyWith method

SetPollAnswer copyWith({
  1. int? chatId,
  2. int? messageId,
  3. List<int>? optionIds,
})

Implementation

SetPollAnswer copyWith({int? chatId, int? messageId, List<int>? optionIds}) =>
    SetPollAnswer(
      chatId: chatId ?? this.chatId,
      messageId: messageId ?? this.messageId,
      optionIds: optionIds ?? this.optionIds,
    );