UnspentOutputs.fromJson constructor

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

Implementation

factory UnspentOutputs.fromJson(Map<String, dynamic> json) => UnspentOutputs(
      amount: json['amount'] == null ? null : json['amount'].toDouble(),
      nftAddress: json['nftAddress'],
      type: json['type'],
      from: json['from'],
    );