SecretGeneratorTypeQuery constructor

SecretGeneratorTypeQuery({
  1. SecretGeneratorType? generatorType,
})

Implementation

factory SecretGeneratorTypeQuery({
  SecretGeneratorType? generatorType,
}) {
  final result = create();
  if (generatorType != null) result.generatorType = generatorType;
  return result;
}