isWhiteSpace function

bool isWhiteSpace(
  1. String c
)

Implementation

bool isWhiteSpace(String c) {
  return RegExp(r"\s").hasMatch(c);
}