UtxoInfo.fromJson constructor

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

Implementation

factory UtxoInfo.fromJson(Map<String, dynamic> json) => UtxoInfo(
      collateralMin: json["collateral_min"],
      utxos: List<Utxo>.from(json["utxos"].map((x) => Utxo.fromJson(x))),
    );