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