FDateSelectionManagedControl<T> constructor
const
FDateSelectionManagedControl<T> ({
- FDateSelectionController<
T> ? controller, - T? initial,
- ValueChanged<
T> ? onChange,
Creates a FDateSelectionControl.
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._();