CutSceneWidget constructor

const CutSceneWidget({
  1. Key? key,
  2. required CutScene cutScene,
  3. dynamic onNextScene(
    1. String
    )?,
  4. required dynamic onComplete(),
  5. String? baseDir,
  6. SceneController? controller,
  7. BoxDecoration? dialogBoxDecoration,
  8. TextStyle? dialogTextStyle,
})

Implementation

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