Skip to content

Instantly share code, notes, and snippets.

@JaveedIshaq
Last active December 11, 2019 01:09
Show Gist options
  • Save JaveedIshaq/8e3e94da79afd941eaa602975fe9a814 to your computer and use it in GitHub Desktop.
Save JaveedIshaq/8e3e94da79afd941eaa602975fe9a814 to your computer and use it in GitHub Desktop.
Dart Lang notes
1- Class Names always starts with a capital letter
2- How to create a Constructor of class in Dart Language ==> it is must t learn
3- Void function which retuns nothing
4- if there is need to return some data from a function it must write the type of data before the functions name to be returned
5- NULL Aware Operator in dart
someVaraible ?? defaultValue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment