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