DatepickerModel constructor

DatepickerModel(
  1. WidgetModel parent,
  2. String? id, {
  3. String? type,
  4. dynamic format,
  5. 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;
}