CreateServiceAccountKeyRequest constructor

CreateServiceAccountKeyRequest({
  1. String? name,
  2. ServiceAccountPrivateKeyType? privateKeyType,
  3. ServiceAccountKeyAlgorithm? keyAlgorithm,
})

Implementation

factory CreateServiceAccountKeyRequest({
  $core.String? name,
  ServiceAccountPrivateKeyType? privateKeyType,
  ServiceAccountKeyAlgorithm? keyAlgorithm,
}) {
  final result = create();
  if (name != null) result.name = name;
  if (privateKeyType != null) result.privateKeyType = privateKeyType;
  if (keyAlgorithm != null) result.keyAlgorithm = keyAlgorithm;
  return result;
}