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