StoriesPage constructor

StoriesPage({
  1. BorderDecoration? borderDecoration = const BorderDecoration.standart(),
  2. String? name,
  3. required List<String> content,
  4. required Widget cardDecoration,
  5. MoveWatchedState state = MoveWatchedState.unwatched,
})

Add a story

Implementation

StoriesPage({
  this.borderDecoration = const BorderDecoration.standart(),
  this.name,
  required this.content,
  required this.cardDecoration,
  this.state = MoveWatchedState.unwatched,
});