How to remove_action

here what i have in Bricks woocommerce.php
add_action( ‘woocommerce_after_quantity_input_field’, [ $this, ‘quantity_input_field_add_minus_button’ ] );
add_action( ‘woocommerce_after_quantity_input_field’, [ $this, ‘quantity_input_field_add_plus_button’ ] );

I tried the following but do not work

remove_action( ‘woocommerce_after_quantity_input_field’, ‘quantity_input_field_add_minus_button’ ]);
remove_action( ‘woocommerce_after_quantity_input_field’, ‘quantity_input_field_add_plus_button’ ]);

"Could someone help me, please?