Check if a WooCommerce Order Item has a specific meta data key

You should use isset():

if ( isset( $item_data['name'] ) ) {
    // your code 
}