Picker constructor

const Picker(
  1. List<Country> countries,
  2. Country? initial, {
  3. Key? key,
  4. PreferredSizeWidget? appBar,
  5. CountryTheme? theme,
  6. bool useUiOverlay = true,
  7. bool useSafeArea = false,
  8. required String language,
})

Implementation

const Picker(this.countries, this.initial,
    {super.key,
    this.appBar,
    this.theme,
    this.useUiOverlay = true,
    this.useSafeArea = false,
    required this.language});