GetActiveIdentityProvidersRequest constructor

GetActiveIdentityProvidersRequest({
  1. RequestContext? ctx,
  2. bool? creationAllowed,
  3. bool? linkingAllowed,
  4. bool? autoCreation,
  5. 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;
}