newInstance method

PythonClassInterface<PythonFfiDelegate<Object?>, Object?> newInstance(
  1. List<Object?> args, [
  2. Map<String, Object?>? kwargs
])
inherited

Instantiates a new PythonClass from this class definition.

Implementation

PythonClassInterface<PythonFfiDelegate<Object?>, Object?> newInstance(
  List<Object?> args, [
  Map<String, Object?>? kwargs,
]) =>
    _classDefinitionDelegate.newInstance(args, kwargs);