menu
flutter_util_code package
documentation
null_safety_utils.dart
StringNullSafety
isNullOrEmpty property
isNullOrEmpty property
dark_mode
light_mode
isNullOrEmpty
property
bool
get
isNullOrEmpty
判断字符串是否为空
Implementation
bool get isNullOrEmpty => this == null || this!.isEmpty;
flutter_util_code package
documentation
null_safety_utils
StringNullSafety
isNullOrEmpty property
StringNullSafety extension on
String
?