String? validateBioName(String? value) { if (value!.isEmpty) { return "Please Enter your Bio"; } else { return null; } }