MollieAddress constructor

MollieAddress({
  1. String? organizationName,
  2. String? streetAndNumber,
  3. String? city,
  4. String? region,
  5. String? postalCode,
  6. String? country,
  7. String? title,
  8. String? givenName,
  9. String? familyName,
  10. String? email,
  11. String? phone,
})

Implementation

MollieAddress(
    {this.organizationName,
    this.streetAndNumber,
    this.city,
    this.region,
    this.postalCode,
    this.country,
    this.title,
    this.givenName,
    this.familyName,
    this.email,
    this.phone});