Account constructor

Account({
  1. String? id,
  2. String? name,
  3. String? accountAlias,
  4. String? accountSubType,
  5. String? accountType,
  6. String? acctNum,
  7. bool? active,
  8. String? classification,
  9. DateTime? createTime,
  10. CurrencyRefType? currencyRef,
  11. double? currentBalance,
  12. double? currentBalanceWithSubAccounts,
  13. String? description,
  14. String? fullyQualifiedName,
  15. DateTime? lastUpdatedTime,
  16. ModificationMetaData? metaData,
  17. ReferenceType? parentRef,
  18. bool? subAccount,
  19. String? syncToken,
  20. ReferenceType? taxCodeRef,
  21. String? txnLocationType,
})

Implementation

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