How to Hide the "Checkout Plugins Setup" Dashboard Widget

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

	//Remove the "Checkout Plugins Setup" widget.
	remove_meta_box('cpsw_setup_dashboard_widget', 'dashboard', 'normal');
}

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

Where do I put this code?