是否存在指定值
bool hasValue(String val) { if (isNotEmpty == true) { if (indexWhere((element) => element == val) != -1) { return true; } } return false; }