自己解決いたしましたのでトピックを解決済みとさせて頂きます。
function start_el( &$output, $item, $depth, $args ) {
if (in_array('menu-item-has-children', $item->classes)) {
$output .= "\n".'<li data-uk-dropdown>';
$output .= $this->create_a_tag($item, $depth, $args);
}
else {
$output .= '<li>';
$output .= $this->create_a_tag($item, $depth, $args);
}
}
function end_el( &$output, $item, $depth, $args ) {
if (in_array('menu-item-has-children', $item->classes)) {
$output .= "\n".'</li>';
}
else {
$output .= "\n".'</li>';
}
}