Dart: This Keyword
While super keyword is used to call parent class, this keyword is used to call the class itself.
In below I am writing one example which display use of this keyword.
void main()
{
var keywordThis = thisKeyword();
keywordThis..printFunction(100 , ...
jinali.hashnode.dev2 min read