CustomerSignUpScreen constructor

const CustomerSignUpScreen({
  1. Key? key,
  2. bool? checkbox,
  3. int platform = 3,
  4. dynamic apiController,
  5. dynamic maskTextInputFormatter,
  6. Key nameKey = const Key("name"),
  7. Key lastName = const Key("lastName"),
  8. dynamic formKey,
  9. dynamic user,
  10. dynamic settingsArguments,
  11. required String langEmailIncorrect,
  12. required String langName,
  13. required String langRequired,
  14. required String langLastName,
  15. required String langNext,
  16. required String langIAgreeTo,
  17. required String langPrivacyPolicy,
  18. required String langEmail,
  19. required String langMobileNumber,
  20. required String langSignUp,
  21. required Future<void> onPressedNext(
    1. dynamic number,
    2. dynamic email,
    3. dynamic name,
    4. dynamic lastName,
    ),
  22. required void pop(),
  23. dynamic contextLocale,
  24. bool phoneNumberUnabled = false,
})

Implementation

const CustomerSignUpScreen({
  super.key,
  this.checkbox,
  this.platform = 3,
  this.apiController,
  this.maskTextInputFormatter,
  this.nameKey = const Key("name"),
  this.lastName = const Key("lastName"),
  this.formKey,
  this.user,
  this.settingsArguments,
  required this.langEmailIncorrect,
  required this.langName,
  required this.langRequired,
  required this.langLastName,
  required this.langNext,
  required this.langIAgreeTo,
  required this.langPrivacyPolicy,
  required this.langEmail,
  required this.langMobileNumber,
  required this.langSignUp,
  required this.onPressedNext,
  required this.pop,
  this.contextLocale,
  this.phoneNumberUnabled = false,
});