SceneView constructor

const SceneView({
  1. Key? key,
  2. SceneViewController? controller,
  3. VoidCallback? onViewCreated,
  4. List<ModelNode> initialModels = const [],
})

Implementation

const SceneView({
  super.key,
  this.controller,
  this.onViewCreated,
  this.initialModels = const [],
});