PaystubAddress constructor

PaystubAddress({
  1. String? city,
  2. String? country,
  3. String? postalCode,
  4. String? region,
  5. String? street,
  6. String? line1,
  7. String? line2,
  8. String? stateCode,
})

Implementation

PaystubAddress({
  this.city,
  this.country,
  this.postalCode,
  this.region,
  this.street,
  this.line1,
  this.line2,
  this.stateCode,
});