检查字符串是否空
static bool isEmpty(String? string) { return (null == string || string.isEmpty)? true : false; }