isAlphaNumericString function

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

Implementation

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