call method

Future<PyObjectWrapper> call({
  1. required List<PyArgument> args,
})
override

调用对象 (如果它是函数或类) Python: self(*args)

Implementation

Future<PyObjectWrapper> call({required List<PyArgument> args}) =>
    RustLib.instance.api
        .crateApiPythonPyObjectWrapperCall(that: this, args: args);