PlexFormField.dateTime constructor

PlexFormField.dateTime({
  1. required String title,
  2. required dynamic onChange(
    1. dynamic value
    ),
  3. bool showWhen(
    1. dynamic formState
    )?,
})

Implementation

PlexFormField.dateTime({
  required this.title,
  required this.onChange,
  this.showWhen,
}) {
  fieldType = TYPE_DATETIME;
}