countryStateCity method

Widget countryStateCity()

Implementation

Widget countryStateCity() {
  return Column(
    children: [
      verticalSpaceSmall,
      CountryStateCityPicker(
        country: controller.country,
        state: controller.state,
        city: controller.city,
        countryValidator: (value) => Validators.validateEmpty(value),
        stateValidator: (value) => Validators.validateEmpty(value),
        cityValidator: (value) => Validators.validateEmpty(value),
      ),
    ],
  );
}