withCity method

AddressBuilder withCity(
  1. String? city
)

Implementation

AddressBuilder withCity(String? city) {
  _city = city;
  return this;
}