AddJWTProviderRequest constructor

AddJWTProviderRequest({
  1. String? name,
  2. String? issuer,
  3. String? jwtEndpoint,
  4. String? keysEndpoint,
  5. String? headerName,
  6. Options? providerOptions,
})

Implementation

factory AddJWTProviderRequest({
  $core.String? name,
  $core.String? issuer,
  $core.String? jwtEndpoint,
  $core.String? keysEndpoint,
  $core.String? headerName,
  $11.Options? providerOptions,
}) {
  final _result = create();
  if (name != null) {
    _result.name = name;
  }
  if (issuer != null) {
    _result.issuer = issuer;
  }
  if (jwtEndpoint != null) {
    _result.jwtEndpoint = jwtEndpoint;
  }
  if (keysEndpoint != null) {
    _result.keysEndpoint = keysEndpoint;
  }
  if (headerName != null) {
    _result.headerName = headerName;
  }
  if (providerOptions != null) {
    _result.providerOptions = providerOptions;
  }
  return _result;
}