ScUnsignedParent.fromJson constructor
Implementation
factory ScUnsignedParent.fromJson(Map<String, dynamic> json) {
return ScUnsignedParent(
id: json['id'] ?? '',
stateElement: ScStateElement.fromJson(json['stateElement'] ?? {}),
siacoinOutput:
ScUnsignedSiacoinOutput.fromJson(json['siacoinOutput'] ?? {}),
);
}