isEmpty static method

bool isEmpty(
  1. String? content
)

Implementation

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