Order by slug in get_terms with multiple taxonomies

$keys = array_column($terms, 'slug');
array_multisort($keys, SORT_ASC, $terms);

That did the trick and let me sort terms in that muli array.