HTFunctionType constructor
HTFunctionType({
- List<
HTGenericTypeParameter> genericTypeParameters = const [], - List<
HTParameterType> parameterTypes = const [], - HTType? returnType,
Implementation
HTFunctionType({
this.genericTypeParameters = const [],
List<HTParameterType> parameterTypes = const [],
HTType? returnType,
}) : _parameterTypes = parameterTypes,
_returnType = returnType;