copyWith method
Implementation
AnswerGuestQuery copyWith({
int? guestQueryId,
InputInlineQueryResult? result,
}) => AnswerGuestQuery(
guestQueryId: guestQueryId ?? this.guestQueryId,
result: result ?? this.result,
);
AnswerGuestQuery copyWith({
int? guestQueryId,
InputInlineQueryResult? result,
}) => AnswerGuestQuery(
guestQueryId: guestQueryId ?? this.guestQueryId,
result: result ?? this.result,
);