DateFormWidget constructor

const DateFormWidget({
  1. Key? key,
  2. required DateFormComponent component,
})

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

Clicking on this will show a DatePicker using showDatePicker

Implementation

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