menu
cutils package
documentation
text/text_utils.dart
TextUtils
isEmpty method
isEmpty method
dark_mode
light_mode
isEmpty
method
bool
isEmpty
(
String
?
text
)
判断文本内容是否为空
Implementation
bool isEmpty(String? text) { return text == null || text.isEmpty; }
cutils package
documentation
text/text_utils
TextUtils
isEmpty method
TextUtils class