LedgerEntry.fromJson constructor
Implementation
factory LedgerEntry.fromJson(Map<String, dynamic> json) {
String key = json['key'];
String xdr = json['xdr'];
String lastModifiedLedgerSeq = json['lastModifiedLedgerSeq'];
String? expirationLedgerSeq = json['expirationLedgerSeq'];
return LedgerEntry(key, xdr, lastModifiedLedgerSeq, expirationLedgerSeq);
}