GetActiveIdentityProvidersRequest constructor
GetActiveIdentityProvidersRequest({
- RequestContext? ctx,
- bool? creationAllowed,
- bool? linkingAllowed,
- bool? autoCreation,
- bool? autoLinking,
Implementation
factory GetActiveIdentityProvidersRequest({
$1.RequestContext? ctx,
$core.bool? creationAllowed,
$core.bool? linkingAllowed,
$core.bool? autoCreation,
$core.bool? autoLinking,
}) {
final result = create();
if (ctx != null) result.ctx = ctx;
if (creationAllowed != null) result.creationAllowed = creationAllowed;
if (linkingAllowed != null) result.linkingAllowed = linkingAllowed;
if (autoCreation != null) result.autoCreation = autoCreation;
if (autoLinking != null) result.autoLinking = autoLinking;
return result;
}