copyWith method
Implementation
AnswerChatJoinRequestQuery copyWith({
int? queryId,
ChatJoinRequestResult? result,
String? url,
}) => AnswerChatJoinRequestQuery(
queryId: queryId ?? this.queryId,
result: result ?? this.result,
url: url ?? this.url,
);