Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Specify primary constructors (#3023)
This is a proposed feature specification that specifies the feature _primary constructors_. A primary constructor is a syntactically concise notation for a constructor. For instance: ```dart // Using current Dart. class Point { final int x; final int y; const Point(this.x, [this.y = 0]); } // Using a primary constructor. class const Point(int x, [int y = 0]); ```
- Loading branch information