ProfileSettings constructor

const ProfileSettings({
  1. Key? key,
  2. required String accountInfoLabel,
  3. required String accountEmail,
  4. required String accountPhone,
  5. required String accountPassword,
  6. required String submitButtonLabel,
  7. required String bioLabel,
  8. required bool isSubmitDisabled,
  9. required void onBackPressed(),
  10. required void onEditAccountPressed(),
  11. required void onSubmitPressed(),
  12. required void onPasswordArrowClick(),
  13. required bool showAppsConnectSection,
  14. File? selectedImage,
})

Implementation

const ProfileSettings({
  Key? key,
  required this.accountInfoLabel,
  required this.accountEmail,
  required this.accountPhone,
  required this.accountPassword,
  required this.submitButtonLabel,
  required this.bioLabel,
  required this.isSubmitDisabled,
  required this.onBackPressed,
  required this.onEditAccountPressed,
  required this.onSubmitPressed,
  required this.onPasswordArrowClick,
  required this.showAppsConnectSection,
  this.selectedImage,
}) : super(key: key);