AST constructor

AST()

Creates a new instance of the Python class ASTNode.

Implementation

factory AST() => PythonFfiDart.instance.importClass(
      "ast",
      "ASTNode",
      AST.from,
      <Object?>[],
      <String, Object?>{},
    );