ElectrumScriptPubKey.fromJson constructor

ElectrumScriptPubKey.fromJson(
  1. Map json
)

Implementation

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