isNullOrWhitespace property

bool isNullOrWhitespace

Whether this string is null or whitespace.

Implementation

bool get isNullOrWhitespace => let((it) => it == null || it.trim().isEmpty);