UpdateAppleProviderRequest constructor

UpdateAppleProviderRequest({
  1. String? id,
  2. String? name,
  3. String? clientId,
  4. String? teamId,
  5. String? keyId,
  6. List<int>? privateKey,
  7. Iterable<String>? scopes,
  8. Options? providerOptions,
})

Implementation

factory UpdateAppleProviderRequest({
  $core.String? id,
  $core.String? name,
  $core.String? clientId,
  $core.String? teamId,
  $core.String? keyId,
  $core.List<$core.int>? privateKey,
  $core.Iterable<$core.String>? scopes,
  $10.Options? providerOptions,
}) {
  final $result = create();
  if (id != null) {
    $result.id = id;
  }
  if (name != null) {
    $result.name = name;
  }
  if (clientId != null) {
    $result.clientId = clientId;
  }
  if (teamId != null) {
    $result.teamId = teamId;
  }
  if (keyId != null) {
    $result.keyId = keyId;
  }
  if (privateKey != null) {
    $result.privateKey = privateKey;
  }
  if (scopes != null) {
    $result.scopes.addAll(scopes);
  }
  if (providerOptions != null) {
    $result.providerOptions = providerOptions;
  }
  return $result;
}