edited_test using postman

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times… Continue reading edited_test using postman

Using super keyword with constructor

We can use the super keyword to access the parent class constructor. The super keyword can call both parameterized and non-parameterized constructors depending on the situation. The syntax is given below. Syntax: :super();  Example – // Base class called Parent   class Parent   {        Parent()        {            print(“This is the super class constructor”);        }    }       // Child class Super   class Child extends Parent    {                   Child():super()   // Calling super class constructor       {                            print(“This is the sub class constructor”);        }    }      void main() {    // Creating object of sub class  … Continue reading Using super keyword with constructor