SelectionList constructor

SelectionList(
  1. List elements,
  2. CurrencyCode initialSelection, {
  3. Key? key,
  4. required PreferredSizeWidget appBar,
  5. CurrencyListPickerTheme? theme,
  6. Widget builder(
    1. BuildContext context,
    2. CurrencyCode
    )?,
  7. bool useUiOverlay = true,
  8. bool useSafeArea = false,
})

Implementation

SelectionList(this.elements, this.initialSelection,
    {Key? key,
    required this.appBar,
    this.theme,
    this.builder,
    this.useUiOverlay = true,
    this.useSafeArea = false})
    : super(key: key);