hasWhitespace method

bool hasWhitespace()

Implementation

bool hasWhitespace() {
  if (this == null) return false;
  return this!.contains(' ');
}