createWhiteboard function
Creates new CubeWhiteboard
model on the backend.
More details about required parameters by link
whiteboard
- the instance of CubeWhiteboard
which will be created on the backend.
Implementation
Future<CubeWhiteboard> createWhiteboard(CubeWhiteboard whiteboard) {
return CreateWhiteboardQuery(whiteboard).perform();
}