ConstFunctionReferenceImpl constructor

ConstFunctionReferenceImpl({
  1. required String name,
  2. required ExecutableElement element,
  3. required DeclarationRef declaration,
})

Creates a new function reference constant.

@param name The name of the function @param element The executable element for the function @param declaration The declaration reference to the function

Implementation

ConstFunctionReferenceImpl({
  required this.name,
  required this.element,
  required this.declaration,
});