GSDatePickerModel constructor
GSDatePickerModel(- {dynamic type,
- dynamic tag,
- dynamic title,
- dynamic errorMessage,
- dynamic helpMessage,
- dynamic prefixWidget,
- dynamic postfixWidget,
- dynamic required,
- dynamic status,
- dynamic value,
- dynamic weight,
- dynamic showTitle,
- String? hint,
- GSDateFormatType? dateFormatType,
- bool? isPastAvailable,
- GSDate? availableFrom,
- GSDate? availableTo,
- GSDate? initialDate,
- 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);