Skip to content

Instantly share code, notes, and snippets.

@juliuscanute
Last active August 10, 2019 08:33
Show Gist options
  • Save juliuscanute/3982fcd8ef4fae8a2a423cd99f3ae98a to your computer and use it in GitHub Desktop.
Save juliuscanute/3982fcd8ef4fae8a2a423cd99f3ae98a to your computer and use it in GitHub Desktop.
[Creating a class in Dart with Inheritance]#class #dart #inheritance
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