AddressModel constructor

AddressModel({
  1. String? street,
  2. String? postalCode,
  3. String? city,
})

Returns a new AddressModel instance.

Implementation

AddressModel({
  this.street,
  this.postalCode,
  this.city,
});