isNullOrEmpty property

bool get isNullOrEmpty

Returns true if this string is null or empty.

Implementation

bool get isNullOrEmpty => this == null || this!.isEmpty;