isNullOrEmpty property

bool get isNullOrEmpty

Whether this string is null or empty.

Implementation

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