withProvince method

AddressBuilder withProvince(
  1. String? province
)

Implementation

AddressBuilder withProvince(String? province) {
  _province = province;
  return this;
}