serviceLaunchTenantCreate method

Future<void> serviceLaunchTenantCreate()

User/tenant creation flow

Implementation

Future<void> serviceLaunchTenantCreate() async {
  final response = await serviceLaunchTenantCreateWithHttpInfo();
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}