country static method
Widget
country({})
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);
}