deleteTenant method
Deletes an existing tenant.
tenantId - The tenantId corresponding to the tenant to delete.
Returns a Future that completes once the tenant has been deleted.
Implementation
Future<void> deleteTenant(String tenantId) async {
await _authRequestHandler.deleteTenant(tenantId);
}