startFollowingThread method
Start following a thread
Start following a thread Minimum server version: 5.29 ##### Permissions Must be logged in as the user or have edit_other_users
permission.
Parameters:
Implementation
Future<void> startFollowingThread(
String userId,
String teamId,
String threadId,
) async {
final response = await startFollowingThreadWithHttpInfo(
userId,
teamId,
threadId,
);
if (response.statusCode >= HttpStatus.badRequest) {
throw MmApiException(response.statusCode, await _decodeBodyBytes(response));
}
}