In Dart, when you're working with classes, sometimes you have a class that inherits from another class.
The class that does the inheriting is called the child class, and the class it inherits from is called the parent class.
Now, let's say both the p...