Utxo.fromJson constructor
Implementation
factory Utxo.fromJson(Map<String, dynamic> json) => Utxo(
outputPointer: OutputPointer.fromString(json["output_pointer"]),
timelock: json["timelock"],
utxoMature: json["utxo_mature"],
value: json["value"],
);