ledgerCode property

String ledgerCode

Implementation

String get ledgerCode => _getAttribute<String>(kLedgerCode, '');
void ledgerCode=(String? x)

If an organization's general ledger software tracks funds by code, this attribute can be used to store the fund's code for reference.

pass null to remove key from attributes

Implementation

set ledgerCode(String? x) => (x == null)
    ? _attributes.remove(kLedgerCode)
    : _attributes[kLedgerCode] = x;