Implemented ledger provider

This commit is contained in:
Stephan D
2026-01-22 18:56:12 +01:00
parent 1b59823105
commit 7ae32cac55
8 changed files with 300 additions and 35 deletions

View File

@@ -43,6 +43,7 @@ class LedgerAccount implements Describable {
LedgerAccount copyWith({
Describable? describable,
LedgerBalance? balance,
}) => LedgerAccount(
ledgerAccountRef: ledgerAccountRef,
organizationRef: organizationRef,
@@ -57,6 +58,6 @@ class LedgerAccount implements Describable {
createdAt: createdAt,
updatedAt: updatedAt,
describable: describable ?? this.describable,
balance: balance,
balance: balance ?? this.balance,
);
}