isNullOrEmpty property

bool isNullOrEmpty

Returns true if string is null or empty

Implementation

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