CutSceneWidget constructor

const CutSceneWidget({
  1. Key? key,
  2. required CutScene cutScene,
  3. dynamic onNextScene(
    1. String
    )?,
  4. required dynamic onComplete(),
})

Implementation

const CutSceneWidget(
    {super.key,
    required this.cutScene,
    this.onNextScene,
    required this.onComplete});