GSDateRangePickerModel constructor

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

Implementation

GSDateRangePickerModel({
  type,
  tag,
  title,
  errorMessage,
  helpMessage,
  showTitle,
  prefixWidget,
  postfixWidget,
  required,
  status,
  value,
  validateReg,
  weight,
  this.hint,
  this.dateFormatType,
  this.isPastAvailable,
  this.availableFrom,
  this.availableTo,
  this.initialStartDate,
  this.initialEndDate,
  required this.calendarType,
  this.from,
  this.to,
}) : super(
          type: type,
          tag: tag,
          title: title,
          errorMessage: errorMessage,
          helpMessage: helpMessage,
          prefixWidget: prefixWidget,
          postfixWidget: postfixWidget,
          required: required,
          status: status,
          defaultValue: value,
          validateRegEx: validateReg,
          weight: weight,
          showTitle: showTitle);