copyWith method

GetPollOptionProperties copyWith({
  1. int? chatId,
  2. int? messageId,
  3. String? pollOptionId,
})

Implementation

GetPollOptionProperties copyWith({
  int? chatId,
  int? messageId,
  String? pollOptionId,
}) => GetPollOptionProperties(
  chatId: chatId ?? this.chatId,
  messageId: messageId ?? this.messageId,
  pollOptionId: pollOptionId ?? this.pollOptionId,
);