ScenekitView constructor

const ScenekitView({
  1. Key? key,
  2. bool? isAllowedToInteract,
  3. dynamic onNodeTap(
    1. String
    )?,
  4. required ScenekitPluginCreatedCallback onScenekitViewCreated,
})

Implementation

const ScenekitView({
  Key? key,
  this.isAllowedToInteract,
  this.onNodeTap,
  required this.onScenekitViewCreated,
}) : super(key: key);