FlutterFormInputDateTime constructor
const
FlutterFormInputDateTime({ - required FlutterFormInputController<String> controller,
- required FlutterFormDateTimeType inputType,
- required DateFormat dateFormat,
- Key? key,
- Widget? label,
- bool showIcon = true,
- DateTime? firstDate,
- DateTime? lastDate,
- DateTime? initialDate,
- DateTimeRange? initialDateTimeRange,
- IconData icon = Icons.calendar_today,
- bool enabled = true,
- 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,
});