ProfileSettings constructor
const
ProfileSettings({
- Key? key,
- required String accountInfoLabel,
- required String accountEmail,
- required String accountPhone,
- required String accountPassword,
- required String submitButtonLabel,
- required String bioLabel,
- required bool isSubmitDisabled,
- required void onBackPressed(),
- required void onEditAccountPressed(),
- required void onSubmitPressed(),
- required void onPasswordArrowClick(),
- required bool showAppsConnectSection,
- 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);