FlutterFormInputDateTime constructor 
    
      const
      FlutterFormInputDateTime({ - required FlutterFormDateTimeType inputType, 
 
- required DateFormat dateFormat, 
 
- InputDecoration? decoration, 
 
- TextStyle? style, 
 
- Key? key, 
 
- Widget? label, 
 
- bool showIcon = true, 
 
- DateTime? firstDate, 
 
- DateTime? lastDate, 
 
- DateTime? initialDate, 
 
- DateTimeRange? initialDateTimeRange, 
 
- TimeOfDay? initialTime, 
 
- IconData icon = Icons.calendar_today, 
 
- String? initialValue, 
 
- void onChanged(
 - String?
 
)?,  
- void onSaved(
 - String?
 
)?,  
- String? validator(
 - String?
 
)?,  
- AutovalidateMode autovalidateMode = AutovalidateMode.disabled, 
 
- TimePickerEntryMode timePickerEntryMode = TimePickerEntryMode.dial, 
 
- bool enabled = true, 
 
- bool onTapEnabled = true, 
 
})
    
    
    
  Implementation
  const FlutterFormInputDateTime({
  required this.inputType,
  required this.dateFormat,
  this.decoration,
  this.style,
  super.key,
  this.label,
  this.showIcon = true,
  this.firstDate,
  this.lastDate,
  this.initialDate,
  this.initialDateTimeRange,
  this.initialTime,
  this.icon = Icons.calendar_today,
  this.initialValue,
  this.onChanged,
  this.onSaved,
  this.validator,
  this.autovalidateMode = AutovalidateMode.disabled,
  this.timePickerEntryMode = TimePickerEntryMode.dial,
  this.enabled = true,
  this.onTapEnabled = true,
});