bool isNullOrEmpty(String? value) { if (value == null || value.isEmpty) return true; if (value.isEmpty) return true; return false; }