checkTextEmpty method

bool checkTextEmpty(
  1. String value
)

Implementation

bool checkTextEmpty(String value) {
  isTextEmpty.value = value.isEmpty;
  update();
  return isTextEmpty.value;
}