CountryListPick constructor

CountryListPick({
  1. ValueChanged<CountryCode?>? onChanged,
  2. String? initialSelection,
  3. PreferredSizeWidget? appBar,
  4. Widget pickerBuilder(
    1. BuildContext context,
    2. CountryCode? countryCode
    )?,
  5. Widget countryBuilder(
    1. BuildContext context,
    2. CountryCode countryCode
    )?,
  6. CountryTheme? theme,
  7. bool useUiOverlay = true,
  8. bool useSafeArea = false,
})

Implementation

CountryListPick(
    {this.onChanged,
    this.initialSelection,
    this.appBar,
    this.pickerBuilder,
    this.countryBuilder,
    this.theme,
    this.useUiOverlay = true,
    this.useSafeArea = false});