requireSuccess method

  1. @override
Node requireSuccess()

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');
  }
}