asFunction<T extends Function> method

T asFunction<T extends Function>(
  1. TypedFunctionConverter<T> converter
)
inherited

Converts the Python function object to a Dart function.

Implementation

T asFunction<T extends Function>(TypedFunctionConverter<T> converter) =>
    _functionDelegate.asFunction<T>(converter);