FlutterFormInputDateTime constructor

const FlutterFormInputDateTime({
  1. required FlutterFormInputController<String> controller,
  2. required FlutterFormDateTimeType inputType,
  3. required DateFormat dateFormat,
  4. Key? key,
  5. Widget? label,
  6. bool showIcon = true,
  7. DateTime? firstDate,
  8. DateTime? lastDate,
  9. DateTime? initialDate,
  10. DateTimeRange? initialDateTimeRange,
  11. IconData icon = Icons.calendar_today,
  12. bool enabled = true,
  13. bool onTapEnabled = true,
})

Implementation

const FlutterFormInputDateTime({
  required super.controller,
  required this.inputType,
  required this.dateFormat,
  super.key,
  super.label,
  this.showIcon = true,
  this.firstDate,
  this.lastDate,
  this.initialDate,
  this.initialDateTimeRange,
  this.icon = Icons.calendar_today,
  this.enabled = true,
  this.onTapEnabled = true,
});