PlexFormFieldDate constructor

PlexFormFieldDate({
  1. Key? key,
  2. required PlexFormFieldDateType type,
  3. PlexFormFieldGeneric properties = const PlexFormFieldGeneric.empty(),
  4. PlexWidgetController<DateTime?>? selectionController,
  5. dynamic onSelect(
    1. dynamic item
    )?,
  6. DateTime? minDatetime,
  7. DateTime? maxDatetime,
  8. bool cancellable = true,
  9. PlexWidgetController<String?>? errorController,
})

Implementation

PlexFormFieldDate({
  super.key,
  required this.type,
  this.properties = const PlexFormFieldGeneric.empty(),
  this.selectionController,
  this.onSelect,
  this.minDatetime,
  this.maxDatetime,
  this.cancellable = true,
  this.errorController,
});