Order or Orderby in tax_query (How to define order of terms in WP_Query)

From the get_terms documentation:

orderby (string): Field(s) to order terms by. Accepts term fields (‘name’, ‘slug’, ‘term_group’, ‘term_id’, ‘id’, ‘description’), ‘count’ for term taxonomy count, ‘include’ to match the ‘order’ of the $include param, ‘meta_value’, ‘meta_value_num’, the value of $meta_key, the array keys of $meta_query, or ‘none’ to omit the ORDER BY clause. Defaults to ‘name’.

Example:

get_terms([
     'taxonomy' => 'topic',
     'orderby'  => 'field',
     'order'    => 'ASC/DESC',    
]);