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,
  $11.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;
}