ElectrumScriptPubKey.fromJson constructor
- Map json
Implementation
factory ElectrumScriptPubKey.fromJson(Map json) {
return ElectrumScriptPubKey(
hexString: json['hex'] as String,
type: json['type'] as String,
);
}
factory ElectrumScriptPubKey.fromJson(Map json) {
return ElectrumScriptPubKey(
hexString: json['hex'] as String,
type: json['type'] as String,
);
}