не пустая строка проверка Dart

Testing empty or null, use Dart's safe navigation

if (mystring?.isEmpty ?? true) {
  // 
}
Exuberant Eland