static String? validateIsEmpty( String? value, [ String message = 'Input tidak boleh kosong', ]) { if (value?.isEmpty ?? true) { return message; } return null; }