FLineCalendarControl.lifted constructor

const FLineCalendarControl.lifted({
  1. required DateTime? date,
  2. required ValueChanged<DateTime?> onChange,
})

Creates lifted state control.

The date parameter contains the current selected date. The onChange callback is invoked when the user selects a date.

Implementation

const factory FLineCalendarControl.lifted({required DateTime? date, required ValueChanged<DateTime?> onChange}) =
    _Lifted;