is_empty property

bool get is_empty

Returns true if the string is null or empty.

Implementation

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