TransactionChainResponseLedger.fromJson constructor Null safety

TransactionChainResponseLedger.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory TransactionChainResponseLedger.fromJson(Map<String, dynamic> json) =>
    TransactionChainResponseLedger(
      uco: TransactionChainResponseUco.fromJson(json['uco']),
      nft: TransactionChainResponseNft.fromJson(json['nft']),
    );