ListSecretGeneratorsResponse constructor
ListSecretGeneratorsResponse({
- ListDetails? details,
- Iterable<
SecretGenerator> ? result,
Implementation
factory ListSecretGeneratorsResponse({
$8.ListDetails? details,
$core.Iterable<$24.SecretGenerator>? result,
}) {
final $result = create();
if (details != null) {
$result.details = details;
}
if (result != null) {
$result.result.addAll(result);
}
return $result;
}