true if the value is null, or is a zero length String
value
static bool isEmpty(String? value) { if (value == null) { return true; } return value.isEmpty; }