isWhitespace function

bool isWhitespace(
  1. String? c
)

Implementation

bool isWhitespace(String? c) => c != null && _whitespaces.contains(c);