requireSuccess method
status 201: Node created
Implementation
@override
Node requireSuccess() {
if (this is NodesPostResponse201) {
return (this as NodesPostResponse201).body;
} else {
throw StateError('Expected success response, but got $this');
}
}