HTFunctionType constructor

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

Implementation

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