判断一个变量是否不为空
static bool isNotEmpty(dynamic value, {bool? checkNum, bool? checkString}) => isEmpty(value, checkNum: checkNum, checkString: checkString) == false;