getSceneCollectionList method

Future<SceneCollectionListResponse> getSceneCollectionList()

Gets an array of all scene collections

  • Complexity Rating: 1/5
  • Latest Supported RPC Version: 1
  • Added in v5.0.0

Implementation

Future<SceneCollectionListResponse> getSceneCollectionList() async {
  final response = await obsWebSocket.sendRequest(
    Request('GetSceneCollectionList'),
  );

  return SceneCollectionListResponse.fromJson(response!.responseData!);
}