DatepickerModel constructor
DatepickerModel(
- WidgetModel parent,
- String? id, {
- String? type,
- dynamic format,
- dynamic clear,
Implementation
DatepickerModel(
WidgetModel super.parent,
super.id, {
String? type,
dynamic format,
dynamic clear,
}) {
if (type != null) this.type = type;
if (format != null) this.format = format;
if (clear != null) this.clear = clear;
}