serviceManageUserRoleCreate method
Make user tenant admin
Implementation
Future<void> serviceManageUserRoleCreate() async {
final response = await serviceManageUserRoleCreateWithHttpInfo();
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}