FDateTimePicker constructor

const FDateTimePicker({
  1. String? label,
  2. dynamic onChanged(
    1. DateTime?
    )?,
  3. DateTime? initial,
  4. required DateTime start,
  5. required DateTime end,
  6. Key? key,
})

Implementation

const FDateTimePicker(
    {this.label,
    this.onChanged,
    this.initial,
    required this.start,
    required this.end,
    Key? key})
    : super(key: key);