state static method
Implementation
static Widget state({required String countryName, required Function(StateModel) onChanged, Widget? customWidget, int? verticalPadding, int? horizontalPadding, bool? isSearchEnable = true, bool? pickerEnable = true, String? value}) {
return StatePicker(countryName: countryName, onChanged: onChanged, customWidget: customWidget, verticalPadding: verticalPadding, horizontalPadding: horizontalPadding, isSearchEnable: isSearchEnable, value: value, pickerEnable: pickerEnable);
}