CurrencyListPicker constructor

CurrencyListPicker({
  1. required ValueChanged<CurrencyCode> onChanged,
  2. PreferredSizeWidget? appBar,
  3. String? initialSelection,
  4. Widget builder(
    1. BuildContext context,
    2. CurrencyCode code
    )?,
  5. Widget selectionBuilder(
    1. BuildContext context,
    2. CurrencyCode code
    )?,
  6. CurrencyListPickerTheme? theme,
  7. bool useUiOverlay = true,
  8. bool useSafeArea = false,
})

Implementation

CurrencyListPicker(
    {required this.onChanged,
    this.appBar,
    this.initialSelection,
    this.builder,
    this.selectionBuilder,
    this.theme,
    this.useUiOverlay = true,
    this.useSafeArea = false});