TemplateVariable constructor

TemplateVariable({
  1. required TemplateVariableType type,
  2. required String name,
  3. bool? required,
  4. dynamic defaultValue,
})

Implementation

TemplateVariable({
  required this.type,
  required this.name,
  this.required,
  this.defaultValue,
});