requireSuccess method
status 200: List of child nodes
Implementation
@override
List<Node> requireSuccess() {
if (this is NodesIdChildrenGetResponse200) {
return (this as NodesIdChildrenGetResponse200).body;
} else {
throw StateError('Expected success response, but got $this');
}
}