isEmpty static method

bool isEmpty(
  1. String? text
)

Implementation

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