expandBackWhile method Null safety
Expands the range with the preceding characters satisffying test
.
Iterates back through the characters preceding the current range
and includes them into the range until finding a character that
test
returns false
for.
Implementation
void expandBackWhile(bool Function(String) test);