isEmpty static method

bool isEmpty(
  1. String? text
)

isEmpty

Implementation

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