saasLaunchTenantCreate method

Future<void> saasLaunchTenantCreate()

User/tenant creation flow

Implementation

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