LavaView constructor

const LavaView({
  1. Key? key,
  2. required LavaController controller,
})

Creates a new LavaView with the specified controller.

The controller must not be null and should be properly initialized by loading an animation asset before this widget is rendered.

Implementation

const LavaView({super.key, required this.controller});