copyWith method

AnswerGuestQuery copyWith({
  1. int? guestQueryId,
  2. InputInlineQueryResult? result,
})

Implementation

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