getClass method

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

Gets a class from the module.

Implementation

PythonClassInterface<PythonFfiDelegate<Object?>, Object?> getClass(
  String className,
  List<Object?> args, [
  Map<String, Object?>? kwargs,
]) =>
    _moduleDelegate.getClass(className, args, kwargs);