PaymentInitiationAddress constructor

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

Implementation

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