How to Hide the "Memory OverviewServertime: 01.05.2025, 07:10:43" Dashboard Widget

function plt_hide_wp_memory_usage_dashboard_widgets() {
	$screen = get_current_screen();
	if ( !$screen ) {
		return;
	}

	//Remove the "Memory OverviewServertime: 01.05.2025, 07:10:43" widget.
	remove_meta_box('wp_memory_dashboard', 'dashboard', 'normal');
}

add_action('wp_dashboard_setup', 'plt_hide_wp_memory_usage_dashboard_widgets', 20);

Where do I put this code?