UpdateGitHubProviderRequest constructor

UpdateGitHubProviderRequest({
  1. String? id,
  2. String? name,
  3. String? clientId,
  4. String? clientSecret,
  5. Iterable<String>? scopes,
  6. Options? providerOptions,
})

Implementation

factory UpdateGitHubProviderRequest({
  $core.String? id,
  $core.String? name,
  $core.String? clientId,
  $core.String? clientSecret,
  $core.Iterable<$core.String>? scopes,
  $6.Options? providerOptions,
}) {
  final result = create();
  if (id != null) result.id = id;
  if (name != null) result.name = name;
  if (clientId != null) result.clientId = clientId;
  if (clientSecret != null) result.clientSecret = clientSecret;
  if (scopes != null) result.scopes.addAll(scopes);
  if (providerOptions != null) result.providerOptions = providerOptions;
  return result;
}