How to validate that a text field doesn't contain a whitespace in flutter? I'm trying to show it on a dialogue
if (_descriptionController2.text.isEmpty) { EasyLoading.showError('Please write a review!');
like this one but i don't know what should i write in the if statement.