isNotNull static method
验证参数是否为空
Implementation
static bool isNotNull(value) {
return value != null && value.toString().trim().length > 0;
}
验证参数是否为空
static bool isNotNull(value) {
return value != null && value.toString().trim().length > 0;
}