SelectionList constructor

SelectionList(
  1. List elements,
  2. CountryCode? initialSelection, {
  3. Key? key,
  4. PreferredSizeWidget? appBar,
  5. CountryTheme? theme,
  6. Widget countryBuilder(
    1. BuildContext context,
    2. CountryCode
    )?,
  7. bool useUiOverlay = true,
  8. bool useSafeArea = false,
  9. Color? backgroundColor = Colors.white,
})

Implementation

SelectionList(
  this.elements,
  this.initialSelection, {
  Key? key,
  this.appBar,
  this.theme,
  this.countryBuilder,
  this.useUiOverlay = true,
  this.useSafeArea = false,
  this.backgroundColor = Colors.white,
}) : super(key: key);