tencent_cloud_chat_uikit_fl.../lib/ui/utils/common_utils.dart

9 lines
219 B
Dart

class TencentUtils{
static bool isTextNotEmpty(String? text){
return text != null && text.isNotEmpty;
}
static String? checkString(String? text){
return (text != null && text.isEmpty) ? null : text;
}
}