NiceAddress constructor

NiceAddress({
  1. String street = '',
  2. String city = '',
  3. String postalCode = '',
  4. String country = 'PL',
  5. String state = '',
  6. String building = '',
  7. String apartment = '',
})

Implementation

NiceAddress({
  this.street = '',
  this.city = '',
  this.postalCode = '',
  this.country = 'PL',
  this.state = '',
  this.building = '',
  this.apartment = '',
});