Kotlin verifique si EditText está vacío

if(TextUtils.isEmpty(editText.getText().toString())){    
    //Do
}
Shirobachi