NFTLedger.fromJson constructor

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

Implementation

factory NFTLedger.fromJson(Map<String, dynamic> json) => NFTLedger(
      transfers: json['transfers'] == null
          ? null
          : List<NFTTransfer>.from(
              json['transfers'].map((x) => NFTTransfer.fromJson(x))),
    );