tenantId property

  1. @override
String? tenantId

The current Auth instance's tenant ID.

When you set the tenant ID of an Auth instance, all future sign-in/sign-up operations will pass this tenant ID and sign in or sign up users to the specified tenant project. When set to null, users are signed in to the parent project. By default, this is set to null.

Implementation

@override
String? get tenantId {
  return delegate.tenantId;
}
  1. @override
void tenantId=(String? tenantId)

The current Auth instance's tenant ID.

When you set the tenant ID of an Auth instance, all future sign-in/sign-up operations will pass this tenant ID and sign in or sign up users to the specified tenant project. When set to null, users are signed in to the parent project. By default, this is set to null.

Implementation

@override
set tenantId(String? tenantId) {
  delegate.tenantId = tenantId;
}