BraintreeBillingAddress constructor

BraintreeBillingAddress({
  1. String? givenName,
  2. String? surname,
  3. String? phoneNumber,
  4. String? streetAddress,
  5. String? extendedAddress,
  6. String? locality,
  7. String? region,
  8. String? postalCode,
  9. String? countryCodeAlpha2,
})

Implementation

BraintreeBillingAddress(
    {this.givenName,
    this.surname,
    this.phoneNumber,
    this.streetAddress,
    this.extendedAddress,
    this.locality,
    this.region,
    this.postalCode,
    this.countryCodeAlpha2});