hasBlankCharFrom function

bool hasBlankCharFrom(
  1. String s, [
  2. int offset = 0
])

Returns true if s has a blank character from offset.

Implementation

bool hasBlankCharFrom(String s, [int offset = 0]) {
  return hasBlankCharInRange(s, offset, s.length - offset);
}