Address constructor

Address([
  1. String? country,
  2. String? province,
  3. String? city,
  4. String? street,
])

Implementation

Address([this.country, this.province, this.city, this.street]);