ServiceTemplateVariable constructor

ServiceTemplateVariable({
  1. required String name,
  2. String? title,
  3. String? description,
  4. bool obscure = false,
  5. bool optional = false,
  6. List<String>? enumValues,
  7. String? type,
  8. Map<String, String>? annotations,
})

Implementation

ServiceTemplateVariable({
  required this.name,
  this.title,
  this.description,
  this.obscure = false,
  this.optional = false,
  this.enumValues,
  this.type,
  this.annotations,
});