isNullOrEmpty property

bool get isNullOrEmpty

check if String is Null and Empty

Implementation

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