ServiceTemplateVariable constructor

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

Implementation

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