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