isEmpty function

bool isEmpty(
  1. String? value
)

Implementation

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