HTExternalFunctionTypedef typedef

HTExternalFunctionTypedef = Function Function(HTFunction hetuFunction)

Accept a hetu function object, then return a dart function for use in Dart code. This is for usage where you want to write a function in script. and want to pass it to a external dart function where it accepts only a pure Dart native function as parameter.

Implementation

typedef HTExternalFunctionTypedef = Function Function(HTFunction hetuFunction);