//TODO: Step 2 - Create a new class called Story.
Using what you've learnt about classes and objects in the Quizzler module, create a new class called Story in story.dart.
If you need to review the docs on Dart Classes, you can find it here:
https://www.dartlang.org/guides/language/language-tour#classes
If you still can't figure out the solution, be sure to review the lessons on Dart Classes in the Quizzler module.
//TODO: Step 3 - Create 3 properties for this class, A. storyTitle to store the story text. B. choice1 to store the text for choice 1, C. choice2 to store the text for choice 2.
HINT: These properties need to be created inside the Story class.
Properties are variables associated with a class, they are also often referred to as a field or an instance variable.
https://www.dartlang.org/guides/language/language-tour#instance-variables
//TODO: Step 4 - Create a Constructor for this class to be able to initialise the properties created in step 3.
If you need a reminder about Constructors, have a look at the Dart docs here:
https://www.dartlang.org/guides/language/language-tour#constructors