Kotlin verifique se o EditText está vazio

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