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