withCountry method

AddressBuilder withCountry(
  1. String? country
)

Implementation

AddressBuilder withCountry(String? country) {
  _country = country;
  return this;
}