isBlank static method

bool isBlank(
  1. String? value
)

Implementation

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