Implemented ledger provider
This commit is contained in:
@@ -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,
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user