isValueEmpty static method

bool isValueEmpty(
  1. String value
)

Implementation

static bool isValueEmpty(String value) {
  if (value.isEmpty) {
    return true;
  }
  return false;
}