RPCLedger constructor

RPCLedger({
  1. bool full = false,
  2. bool accounts = false,
  3. bool transactions = false,
  4. bool expand = false,
  5. bool ownerFunds = false,
  6. bool binary = false,
  7. bool queue = false,
  8. LedgerEntryType? type,
  9. XRPLLedgerIndex? ledgerIndex = XRPLLedgerIndex.validated,
})

Implementation

RPCLedger(
    {this.full = false,
    this.accounts = false,
    this.transactions = false,
    this.expand = false,
    this.ownerFunds = false,
    this.binary = false,
    this.queue = false,
    this.type,
    XRPLLedgerIndex? ledgerIndex = XRPLLedgerIndex.validated})
    : super(ledgerIndex: ledgerIndex);