isNullOrEmpty property

bool isNullOrEmpty

check if String is Null and Empty

Implementation

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