FDateTimePickerManagedControl constructor

const FDateTimePickerManagedControl({
  1. FDateTimePickerController? controller,
  2. DateTime? initial,
  3. ValueChanged<DateTime>? onChange,
})

Implementation

const FDateTimePickerManagedControl({this.controller, this.initial, this.onChange})
  : assert(
      controller == null || initial == null,
      'Cannot provide both controller and initial date time. Pass initial date time to the controller instead.',
    ),
    super._();