FunctionReferenceImpl constructor

FunctionReferenceImpl({
  1. required ExpressionImpl function,
  2. required TypeArgumentListImpl? typeArguments,
})

Implementation

FunctionReferenceImpl({
  required ExpressionImpl function,
  required TypeArgumentListImpl? typeArguments,
})  : _function = function,
      _typeArguments = typeArguments {
  _becomeParentOf(_function);
  _becomeParentOf(_typeArguments);
}