multi static method

FDateSelectionController<Set<DateTime>> multi({
  1. Set<DateTime> initial = const {},
})

Creates a FDateSelectionController that allows multiple dates to be selected, with the given initial selected dates.

Implementation

static FDateSelectionController<Set<DateTime>> multi({Set<DateTime> initial = const {}}) =>
    _MultiController(initial: initial);