XRPLedgerValidatedLedger.fromJson constructor
Implementation
factory XRPLedgerValidatedLedger.fromJson(Map<String, dynamic> json) {
return XRPLedgerValidatedLedger(
baseFee: parseInt(json['base_fee']) ?? 0,
closeTime: parseInt(json['close_time']) ?? 0,
hash: json['hash'],
reserveBase: json['reserve_base'],
reserveInc: json['reserve_inc'],
seq: json['seq'],
);
}