Unspent.fromJson constructor

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

Implementation

factory Unspent.fromJson(Map<String, dynamic> json) {
  return Unspent(
    utxo: json['utxo'],
    vout: json['vout'],
    amount: json['amount'],
    colorable: json['colorable'],
    rgbAllocations: json['rgbAllocations'],
  );
}