functionReference abstract method

FunctionReference functionReference({
  1. required Expression function,
  2. TypeArgumentList? typeArguments,
})

Returns a newly created function reference. The typeArguments can be null if there are no type arguments being applied to the function.

Implementation

FunctionReference functionReference(
    {required Expression function, TypeArgumentList? typeArguments});