asFunction<@DartRepresentationOf('NF') DF extends Function> method Null safety

DF asFunction<@DartRepresentationOf('NF') DF extends Function>(
  1. {bool isLeaf = false}
)

Convert to Dart function, automatically marshalling the arguments and return value.

isLeaf specifies whether the function is a leaf function. A leaf function must not run Dart code or call back into the Dart VM. Leaf calls are faster than non-leaf calls.

Implementation

external DF asFunction<@DartRepresentationOf('NF') DF extends Function>(
    {bool isLeaf = false});