Unspent.fromJson constructor
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'],
);
}