isBlank static method

bool isBlank(
  1. String? str
)

Implementation

static bool isBlank(String? str) {
  return !isNotBlank(str);
}