isEmpty static method

bool isEmpty(
  1. String? value
)

Implementation

static bool isEmpty(String? value) {
  return value == null || value.isEmpty;
}