This is implicit and unnecessary. If you do not call the constructor of the base class explicitly, the default constructor (one that has no parameters) is used.
There is only the need to explicitly call the constructor if the base class does not have a default constructor, or if you want to call a different constructor than the default constructor.
, .