Show featured image in sidebar

You can get the Post Thumbnail by get_the_post_thumbnail( ).
Inside your widget add the following code:

global $post;

if ( has_post_thumbnail( $post->ID ) )
  echo get_the_post_thumbnail( $post->ID, 'your-image-size' );

If there is a Featured Image, it will be shown.