LedgerData constructor

const LedgerData({
  1. required String? accountHash,
  2. required int closeFlags,
  3. required int closeTime,
  4. required String closeTimeHuman,
  5. required int closeTimeResolution,
  6. required bool closed,
  7. required String ledgerHash,
  8. required int ledgerIndex,
  9. required int parentCloseTime,
  10. required String parentHash,
  11. required int? seqNum,
  12. required BigInt totalCoins,
  13. required String transactionHash,
  14. required List<TransactionData> transactions,
})

Implementation

const LedgerData(
    {required this.accountHash,
    required this.closeFlags,
    required this.closeTime,
    required this.closeTimeHuman,
    required this.closeTimeResolution,
    required this.closed,
    required this.ledgerHash,
    required this.ledgerIndex,
    required this.parentCloseTime,
    required this.parentHash,
    required this.seqNum,
    required this.totalCoins,
    required this.transactionHash,
    required this.transactions});