copyWith method

UpdateChatJoinResult copyWith({
  1. int? queryId,
  2. int? chatId,
  3. ChatJoinRequestResult? result,
})

Implementation

UpdateChatJoinResult copyWith({
  int? queryId,
  int? chatId,
  ChatJoinRequestResult? result,
}) => UpdateChatJoinResult(
  queryId: queryId ?? this.queryId,
  chatId: chatId ?? this.chatId,
  result: result ?? this.result,
);