get_terms that have custom sticky field checked

OK, got it

<?php
    $types = get_terms( 
        'tvr_amenity', 
        array(
            'parent'    => '0',
            'hide_empty' => 1

         )
    );
    foreach( $types as $type ) :
            $myname = trim($type->name);
            $meta = get_option('amenity_sticky');
            if (empty($meta)) $meta = array();
            if (!is_array($meta)) $meta = (array) $meta;
            $meta = isset($meta[$type->term_id]) ? $meta[$type->term_id] : array();
            $value = $meta['is_sticky'];
            if(!$value) continue; /* skip term if is_sticky not checked */
?>
    <p>
    <input type="checkbox" name="apartment_amenity[]" value="<?php echo $type->term_id ?>" class="tvr_amenity"> <?php echo $myname ?>
    </p>
<?php endforeach;   ?>