validateIsEmpty static method

bool validateIsEmpty(
  1. String value
)

Validates if the value is empty using RequiredRule. Returns true if value is empty, otherwise false. Example:

IstValidator.validateIsEmpty(""); // true
IstValidator.validateIsEmpty("hello"); // false

Implementation

static bool validateIsEmpty(String value) {
  return RequiredRule().validate(value) != null;
}