Dart
Dart is the programming language used to write Flutter apps.
Dart is the programming language used to write Flutter apps.
Effective dart has a style guide https://dart.dev/effective-dart/style
Dart can define constant within and outside class using const keyword with lowerCamelCase name.
Dart's enum is similar to Java's enum, support both name and fields like other classes.
Dart Exception should be caught and can be recovered
Dart function is object that accepts both positional and named parameters.
Every Dart class has implicit interface and can also use
Dart has for and while loops.
Dart Map is very similar to Java Map.
Dart's new keyword is optional, you don't need new when creating an object. var p = Point(1, 2); is the same
Dart does not have a private keyword like Java. It uses the underscore _ to denote private class and methods.
Cheatsheet for Flutter and Dart.
Intellij editors cheatsheet. IDEA, GoLand, WebStorm, PyCharm, etc.