FunctionTemplate constructor

FunctionTemplate(
  1. TypeTemplate template,
  2. int index,
  3. String name,
  4. List<ArgumentTemplate> arguments,
  5. TemplateDataType returnType,
  6. String? expansion,
)

Implementation

FunctionTemplate(TypeTemplate template, int index, String name,
    this.arguments, this.returnType, this.expansion)
    : super(template, MemberType.Property, index, name) {


}