isBoolLoop function

void isBoolLoop()

borrowed directly from dartlang docs... I think TODO teamNext NOT-READY. PLAN: yes.. but what?

Implementation

void isBoolLoop() {
  String name = '';
  //  Fixed:  line 243 col 23: Use isNotEmpty for Iterables and Maps.
  //  The operand cant be null, so the condition is always true
  //  TODO  Fix or remove condition
  if (name.isNotEmpty) {
    print(' yes this is name');
  } else {
    print('tryAgain');
  }
}