getProfileList method
Gets an array of all profiles
- Complexity Rating: 1/5
- Latest Supported RPC Version: 1
- Added in v5.0.0
Implementation
Future<ProfileListResponse> getProfileList() async {
final response = await obsWebSocket.sendRequest(Request('GetProfileList'));
return ProfileListResponse.fromJson(response!.responseData!);
}