hasNullValue method

bool hasNullValue()

是否存在空值

Implementation

bool hasNullValue() {
  if (isNotEmpty == true) {
    if (indexWhere((element) => element == null) != -1) {
      return true;
    }
  }
  return false;
}