Utxo.fromJson constructor

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

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"],
    );