TemplateParameter constructor

const TemplateParameter({
  1. required ParameterType type,
})

Creates a new template parameter.

type is the type of the parameter.

Implementation

const TemplateParameter({
  required this.type,
});