BillingAccount constructor

BillingAccount({
  1. String? currencyCode,
  2. String? displayName,
  3. String? masterBillingAccount,
  4. String? name,
  5. bool? open,
  6. String? parent,
})

Implementation

BillingAccount({
  this.currencyCode,
  this.displayName,
  this.masterBillingAccount,
  this.name,
  this.open,
  this.parent,
});