Super Constructor in Dart
In Dart, the subclass can inherit all the variables and methods of the parent class with the use of the extends keyword, but it can't inherit the constructor of the parent class. To do so, we make use of a super constructor in the dart. There are two ways to call a super constructor: ImplicitlyExpli