stageLayoutDelete method

Future<bool> stageLayoutDelete(
  1. String layoutId
)
inherited

stageLayoutDelete -> /v1/stage/layout/{layout_id}

Deletes the specified stage layout.

PARAMETERS

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> stageLayoutDelete(String layoutId) async {
  String url = '/v1/stage/layout/$layoutId';

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