copyWith method

ChatJoinResultGuardBotApprovalRequired copyWith({
  1. int? botUserId,
  2. int? queryId,
})

Implementation

ChatJoinResultGuardBotApprovalRequired copyWith({
  int? botUserId,
  int? queryId,
}) => ChatJoinResultGuardBotApprovalRequired(
  botUserId: botUserId ?? this.botUserId,
  queryId: queryId ?? this.queryId,
);