Scene constructor

Scene({
  1. required Future<NovelStateSnapshot> script(
    1. Stage stage,
    2. NovelStateSnapshot state
    ),
  2. String? description,
})

Implementation

Scene({
  required this.script,
  this.description,
});