FDateSelectionManagedControl<T> constructor

const FDateSelectionManagedControl<T>({
  1. FDateSelectionController<T>? controller,
  2. T? initial,
  3. ValueChanged<T>? onChange,
})

Implementation

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