withCity method

BillingInfoBuilder withCity(
  1. String city
)

Implementation

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