PayerAddress constructor

PayerAddress(
  1. {required String? address,
  2. required String? city,
  3. required String? countryCode,
  4. required String? postalCode}
)

Implementation

PayerAddress({
  required this.address,
  required this.city,
  required this.countryCode,
  required this.postalCode
});