clearEditInformation method
void
clearEditInformation()
Implementation
void clearEditInformation() {
final profile = authenticationController.userProfileModel.value.data;
firstNameController.text = profile?.user?.firstName ?? "";
lastNameController.text = profile?.user?.lastName ?? "";
// fullNameController.text =
// "${profile?.user?.firstName} ${profile?.user?.lastName}".trim();
phoneNumberController.text = profile?.user?.phone ?? "";
emailController.text = profile?.user?.email ?? "";
countryCode.value = profile?.user?.countryCode ?? "";
}