AccountInfo constructor

AccountInfo({
  1. required String name,
  2. required String currencyCode,
  3. String address1 = '',
  4. String address2 = '',
  5. String city = '',
  6. String state = '',
  7. String zip = '',
  8. String country = '',
})

Implementation

AccountInfo({
  required this.name,
  required this.currencyCode,
  this.address1 = '',
  this.address2 = '',
  this.city = '',
  this.state = '',
  this.zip = '',
  this.country = '',
});