isNullOrEmpty property

bool get isNullOrEmpty

Checks if the string is null or empty.

Implementation

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