CountryPicker<T> constructor

const CountryPicker<T>({
  1. Key? key,
  2. required dynamic onChanged(
    1. CountryModel
    ),
  3. double? height,
  4. double? width,
  5. Widget? customWidget,
  6. int? verticalPadding,
  7. int? horizontalPadding,
  8. bool? isSearchEnable = true,
  9. CountryModel? value,
})

Implementation

const CountryPicker({super.key, required this.onChanged, this.height, this.width, this.customWidget, this.verticalPadding, this.horizontalPadding, this.isSearchEnable = true, this.value});