UserInfoView constructor

const UserInfoView({
  1. required List<String> text_list,
  2. required RichText tc_and_pp_text,
  3. required Function? first_button_action,
  4. required Function? second_button_action,
  5. required Function? third_button_action,
  6. required List<String> gender_values,
  7. required List<String>? country_values,
  8. required Color text_color,
  9. required LinearGradient first_button_color,
  10. required Color second_button_color,
  11. required Color third_button_color,
  12. required String logo_image_path,
  13. double image_border_radius = 0,
  14. required Color topbar_color,
  15. required bool has_language_picker,
  16. required Widget? custom_background,
  17. required UserInfoFormType user_info_form_type,
  18. required bool outline_border,
  19. required bool has_back_button,
  20. required Color? text_field_background_color,
  21. bool? edit_icon_use_text_field_background_color,
})

Implementation

const UserInfoView({
  required this.text_list,
  required this.tc_and_pp_text,
  required this.first_button_action,
  required this.second_button_action,
  required this.third_button_action,
  required this.gender_values,
  required this.country_values,
  required this.text_color,
  required this.first_button_color,
  required this.second_button_color,
  required this.third_button_color,
  required this.logo_image_path,
  this.image_border_radius = 0,
  required this.topbar_color,
  required this.has_language_picker,
  required this.custom_background,
  required this.user_info_form_type,
  required this.outline_border,
  required this.has_back_button,
  required this.text_field_background_color,
  this.edit_icon_use_text_field_background_color,
});