AddJWTIDPRequest constructor

AddJWTIDPRequest({
  1. String? name,
  2. IDPStylingType? stylingType,
  3. String? jwtEndpoint,
  4. String? issuer,
  5. String? keysEndpoint,
  6. String? headerName,
  7. bool? autoRegister,
})

Implementation

factory AddJWTIDPRequest({
  $core.String? name,
  $6.IDPStylingType? stylingType,
  $core.String? jwtEndpoint,
  $core.String? issuer,
  $core.String? keysEndpoint,
  $core.String? headerName,
  $core.bool? autoRegister,
}) {
  final result = create();
  if (name != null) result.name = name;
  if (stylingType != null) result.stylingType = stylingType;
  if (jwtEndpoint != null) result.jwtEndpoint = jwtEndpoint;
  if (issuer != null) result.issuer = issuer;
  if (keysEndpoint != null) result.keysEndpoint = keysEndpoint;
  if (headerName != null) result.headerName = headerName;
  if (autoRegister != null) result.autoRegister = autoRegister;
  return result;
}