Last active
August 10, 2019 08:33
-
-
Save juliuscanute/3982fcd8ef4fae8a2a423cd99f3ae98a to your computer and use it in GitHub Desktop.
[Creating a class in Dart with Inheritance]#class #dart #inheritance
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class $1 extends $2 { | |
} | |
//$1 - Class Name | |
//$2 - Super Class Name | |
class MyWidget extends StatelessWidget { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment