putCountry method

Address putCountry(
  1. String country
)

put country

@param country String @return address Address

Implementation

Address putCountry(String country) {
  addressMap["country"] = country;
  return this;
}