isEmpty static method

bool isEmpty(
  1. String? value
)

Implementation

static bool isEmpty(String? value) => value == null || value.trim().isEmpty;