generate static method

Story generate()

Generates dummy story just to get started.

Implementation

static Story generate() {
  var root = Page.generate();
  var story = Story(
    title: 'After the battle',
    description:
        'At the beginning of XVII century a confrontation flares up between Polish-Lithuanian Commonwealth and Ottoman Empire. As a result of a devastating defeat in the Battle of Cecora, a lot of noblemen, cossacks and soldiers perished or were captured by Turks and Tatars. A fate of a young cossack, wayfaring through the Wild FIelds in a desperate attempt to escape from captivity, depends on a reader of this interactive fiction. All challenges are equally hard: survive in a steppe, avoid the revenge of Tatars, win the trust of cossack fishermen and return home. But the time of the final battle that will change history is coming. Will the main character be able to participate in it and stay alive and where his life will go from there - only You know the answer.',
    authors: 'Konstantin Boytsov, Anastasiia Tsapenko',
    root: root,
    currentPage: root,
    year: 1620,
  );
  return story;
}