StakeBody.fromJson constructor
Implementation
@override
factory StakeBody.fromJson(Map<String, dynamic> json) => StakeBody(
inputs: List<Input>.from(json["inputs"].map((x) => Input.fromJson(x))),
output: StakeOutput.fromJson(json["output"]),
change: json.containsKey('change')
? json["change"] != null
? ValueTransferOutput.fromJson(json["change"])
: null
: null,
);