检查字符串是否为空 Check whether the string is empty
static bool isEmpty(String? string) => null == string || string.isEmpty;