DateTimeComponent constructor

const DateTimeComponent({
  1. Key? key,
  2. required ComponentModel component,
  3. required String? value,
  4. required ValueChanged<String?> onChanged,
  5. DatePickerCallback? onDatePick,
  6. TimePickerCallback? onTimePick,
})

Implementation

const DateTimeComponent({
  super.key,
  required this.component,
  required this.value,
  required this.onChanged,
  this.onDatePick,
  this.onTimePick,
});