stageScreenLayoutSet method

Future<bool> stageScreenLayoutSet(
  1. String id,
  2. String layoutId
)
inherited

stageScreenLayoutSet -> /v1/stage/screen/{id}/layout/{layout_id}

Sets the specified stage layout for the specified stage screen.

PARAMETERS

id : The ID of the screen, either UUID, name, or index.

  • Example (by_uuid): 3C39C433-5C18-4F51-B357-55BB870227C4
  • Example (by_name): Screen Name
  • Example (by_index): 3

layoutId : The ID of the stage layout, either name, index or UUID.

  • Example (by_name): Layout Name
  • Example (by_index): 3
  • Example (by_uuid): 3C39C433-5C18-4F51-B357-55BB870227C4

RESPONSE 204:

The request was processed successfully. There is no response body.

content-type: NONE

Implementation

Future<bool> stageScreenLayoutSet(String id, String layoutId) async {
  String url = '/v1/stage/screen/$id/layout/$layoutId';

  return await call('get', url, httpAccept: 'application/json');
}