HTFunctionType constructor

HTFunctionType({
  1. List<HTGenericTypeParameter> genericTypeParameters = const [],
  2. List<HTParameterType> parameterTypes = const [],
  3. required HTType returnType,
})

Implementation

HTFunctionType(
    {this.genericTypeParameters = const [],
    this.parameterTypes = const [],
    required this.returnType});