How to display/register widget only on post pages in custom plugin

Display your widget only on post pages by adding if ( !is_single() or is_page()) { return;} at the start of your Widget’s function widget()

public function widget( $args, $instance ) {
    if ( !is_single() or is_page()) {  return;}

    // rest of code
}