clearScene method

Future<void> clearScene()

Clear all nodes from the scene.

Implementation

Future<void> clearScene() async {
  _ensureAttached();
  await _channel!.invokeMethod('clearScene');
}