QuickbooksAccount constructor

QuickbooksAccount({
  1. String? id,
  2. String? name,
  3. String? syncToken,
  4. String? acctNum,
  5. QuickbooksReferenceType? parentRef,
  6. QuickbooksReferenceType? currencyRef,
  7. String? description,
  8. bool? active,
  9. Map<String, dynamic>? metaData,
  10. bool? subAccount,
  11. String? classification,
  12. String? fullyQualifiedName,
  13. String? txnLocationType,
  14. String? accountType,
  15. double? currentBalance,
  16. double? currentBalanceWithSubAccounts,
  17. String? accountAlias,
  18. QuickbooksReferenceType? taxCodeRef,
  19. String? accountSubType,
})

Implementation

QuickbooksAccount({
  this.id,
  this.name,
  this.syncToken,
  this.acctNum,
  this.parentRef,
  this.currencyRef,
  this.description,
  this.active,
  this.metaData,
  this.subAccount,
  this.classification,
  this.fullyQualifiedName,
  this.txnLocationType,
  this.accountType,
  this.currentBalance,
  this.currentBalanceWithSubAccounts,
  this.accountAlias,
  this.taxCodeRef,
  this.accountSubType,
});