isNullOrBlank static method
判断value是null 或者为空集合或者空字符串
Implementation
static bool isNullOrBlank(dynamic value) {
if (isNull(value)) {
return true;
}
return isEmpty(value);
}
判断value是null 或者为空集合或者空字符串
static bool isNullOrBlank(dynamic value) {
if (isNull(value)) {
return true;
}
return isEmpty(value);
}