copyWith method

AnswerChatJoinRequestQuery copyWith({
  1. int? queryId,
  2. ChatJoinRequestResult? result,
  3. String? url,
})

Implementation

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