isEmpty static method

bool isEmpty(
  1. String? str
)

Implementation

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