PaymentInitiationAddress constructor

PaymentInitiationAddress({
  1. List<String>? street,
  2. String? city,
  3. String? postalCode,
  4. String? country,
})

Implementation

PaymentInitiationAddress({
  this.street,
  this.city,
  this.postalCode,
  this.country,
});