CreateUserScreenConfig constructor

const CreateUserScreenConfig({
  1. String? title,
  2. String? subTitle,
  3. String? emailPlaceholder,
  4. String? namePlaceholder,
  5. String? dobPlaceholder,
  6. String? genderPlaceholder,
  7. String? submitButtonText,
  8. String? dobFormat,
  9. DateTime? dob,
  10. BoxDecoration? radioContainerStyle,
  11. BoxDecoration? radioCircleStyle,
  12. BoxDecoration? radioSelectedStyle,
  13. TextStyle? radioTextStyle,
  14. TextStyle? genderTitleStyle,
  15. String? genderTitle,
})

Implementation

const CreateUserScreenConfig({
  this.title,
  this.subTitle,
  this.emailPlaceholder,
  this.namePlaceholder,
  this.dobPlaceholder,
  this.genderPlaceholder,
  this.submitButtonText,
  this.dobFormat,
  this.dob,
  this.radioContainerStyle,
  this.radioCircleStyle,
  this.radioSelectedStyle,
  this.radioTextStyle,
  this.genderTitleStyle,
  this.genderTitle,
});