PossibleInterventionAddress constructor

const PossibleInterventionAddress({
  1. String? street,
  2. String? city,
  3. String? district,
  4. String? state,
  5. String? country,
  6. String? postalCode,
})

Implementation

const PossibleInterventionAddress({
  this.street,
  this.city,
  this.district,
  this.state,
  this.country,
  this.postalCode,
});