Dart : Super Keyword
In dart there are various keyword , and each keyword has their own meaning , The same for " super " keyword.
The super keyword is used to access the parent class members.
The super keyword is used to call the method of the parent class.
First , ...