country static method

Widget country({
  1. required dynamic onChanged(
    1. CountryModel
    ),
  2. Widget? customWidget,
  3. int? verticalPadding,
  4. int? horizontalPadding,
  5. bool? isSearchEnable = true,
  6. CountryModel? value,
  7. double? height,
  8. double? width,
})

Implementation

static Widget country({required Function(CountryModel) onChanged, Widget? customWidget, int? verticalPadding, int? horizontalPadding, bool? isSearchEnable = true, CountryModel? value, double? height, double? width}) {
  return CountryPicker(onChanged: onChanged, customWidget: customWidget, verticalPadding: verticalPadding, horizontalPadding: horizontalPadding, isSearchEnable: isSearchEnable, value: value, width: width, height: height);
}