class CommonUtils { // 验证是否为null 或者 '' static bool validationInput(String? inputText) { return inputText?.isNotEmpty ?? false; } }