Ledger.fromJson constructor

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

Implementation

factory Ledger.fromJson(Map<String, dynamic> json) => Ledger(
      nft: json['nft'] == null ? null : NFTLedger.fromJson(json['nft']),
      uco: json['uco'] == null ? null : UCOLedger.fromJson(json['uco']),
    );