LedgerData constructor
const
LedgerData({
- required String? accountHash,
- required int closeFlags,
- required int closeTime,
- required String closeTimeHuman,
- required int closeTimeResolution,
- required bool closed,
- required String ledgerHash,
- required int ledgerIndex,
- required int parentCloseTime,
- required String parentHash,
- required int? seqNum,
- required BigInt totalCoins,
- required String transactionHash,
- 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});