ListSecretGeneratorsResponse constructor

ListSecretGeneratorsResponse({
  1. ListDetails? details,
  2. 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$;
}