static bool isNullOrEmpty(String? value, {int minLenght = 2}) { if (value == null || value.isEmpty) { return true; } return value.length < minLenght; }