StoryPageWrapper constructor

const StoryPageWrapper({
  1. Key? key,
  2. String? path,
  3. List<Story>? children = const [],
})

Implementation

const StoryPageWrapper({
  Key? key,
  this.path,
  this.children = const [],
}) : super(key: key);