clearEditInformation method
Implementation
void clearEditInformation() {
final profile = authenticationController.userProfileModel.value.data;
userFirstNameController.text = profile?.firstName ?? '';
userLastNameController.text = profile?.lastName ?? '';
userEmailController.text = profile?.email ?? "";
userPhoneController.text = profile?.phone ?? "";
countryCode.value = profile?.countryCode ?? "";
}