noString static method

bool noString(
  1. String? v
)

Implementation

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