DateTimeFormWidget constructor

const DateTimeFormWidget({
  1. Key? key,
  2. required DateTimeFormComponent component,
})

Creates a Widget to display and select a Date and a Time contained in component

Clicking on the Date part will show a DatePicker using showDatePicker Clicking on the Time part will show a TimePicker using showTimePicker

Implementation

const DateTimeFormWidget({Key? key, required this.component})
    : super(key: key);