copyWith method
Implementation
AnswerWebAppQuery copyWith({
String? webAppQueryId,
InputInlineQueryResult? result,
}) =>
AnswerWebAppQuery(
webAppQueryId: webAppQueryId ?? this.webAppQueryId,
result: result ?? this.result,
);