Constructors
Let’s learn about a special method through which we can initialize instance variables while creating an instance of a class.
We'll cover the following...
Overview
In Dart, constructors are special functions of a class that are responsible for initializing the instance variables of that class.
A constructor must have the same name as the class it is being declared in and since it is a function, it can be parameterized. However, unlike regular functions, constructors do not have a return value, ...