isWhitespace function

bool isWhitespace(
  1. String chr
)

Implementation

bool isWhitespace(String chr) => chr.trim().isEmpty;