GSDatePickerModel constructor

GSDatePickerModel(
  1. {dynamic type,
  2. dynamic tag,
  3. dynamic title,
  4. dynamic errorMessage,
  5. dynamic helpMessage,
  6. dynamic prefixWidget,
  7. dynamic postfixWidget,
  8. dynamic required,
  9. dynamic status,
  10. dynamic value,
  11. dynamic weight,
  12. dynamic showTitle,
  13. String? hint,
  14. GSDateFormatType? dateFormatType,
  15. bool? isPastAvailable,
  16. GSDate? availableFrom,
  17. GSDate? availableTo,
  18. GSDate? initialDate,
  19. required GSCalendarType calendarType}
)

Implementation

GSDatePickerModel({
  type,
  tag,
  title,
  errorMessage,
  helpMessage,
  prefixWidget,
  postfixWidget,
  required,
  status,
  value,
  weight,
  showTitle,
  this.hint,
  this.dateFormatType,
  this.isPastAvailable,
  this.availableFrom,
  this.availableTo,
  this.initialDate,
  required this.calendarType,
}) : super(
          type: type,
          tag: tag,
          title: title,
          errorMessage: errorMessage,
          helpMessage: helpMessage,
          prefixWidget: prefixWidget,
          postfixWidget: postfixWidget,
          required: required,
          status: status,
          defaultValue: value,
          weight: weight,
          showTitle: showTitle);