clearEditInformation method

void clearEditInformation()

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 ?? "";
}